@charset "UTF-8";
/* Dana UPM=1000, hhea/OS2 ascent=1000 descent=430 lineGap=0.
   Without overrides, WebKit vs Blink half-lead differently → line-height looks off. */
:root {
	--brand: #ff7f66;
	--brand-hover: #ff8575;
	--text: #0a033c;
	--bg: #ffffff;
	--bar-bg: #fafafa;
	/* Shared leading — unitless so clamp()/rem sizes scale the same in Safari & Chrome */
	--lh-tight: 1.3;
	--lh-title: 1.6;
	--lh-body: 1.6;
	--lh-ui: 1.75;
}

/* Cross-document View Transitions — FA ↔ EN language switch (progressive enhancement) */
@view-transition {
	navigation: auto;
}

@keyframes vt-fade-out {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes vt-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

::view-transition-old(root) {
	animation: vt-fade-out 0.4s ease both;
}

::view-transition-new(root) {
	animation: vt-fade-in 0.4s ease both;
}

@media (prefers-reduced-motion: reduce) {
	@view-transition {
		navigation: none;
	}
}

/* Static faces — font-display:block avoids Safari FOUT gap jump on hero */
@font-face {
	font-family: dana;
	src: url('../assets/fonts/dana/staticfonts/Dana-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: block;
	ascent-override: 100%;
	descent-override: 43%;
	line-gap-override: 0%;
}

@font-face {
	font-family: dana;
	src: url('../assets/fonts/dana/staticfonts/Dana-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: block;
	ascent-override: 100%;
	descent-override: 43%;
	line-gap-override: 0%;
}

/* VF for 500/800 etc. — MUST declare weight range so Safari maps font-weight → wght */
@font-face {
	font-family: 'dana VF';
	src: url('../assets/fonts/dana/DanaVF.woff2') format('woff2'), url('../assets/fonts/dana/DanaVF.woff') format('woff');
	font-weight: 100 900;
	font-style: normal;
	font-display: block;
	ascent-override: 100%;
	descent-override: 43%;
	line-gap-override: 0%;
}

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

html {
	scroll-behavior: smooth;
}

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

body {
	background: var(--bg);
	color: var(--text);
	min-height: 100vh;
	line-height: var(--lh-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	/* Prevent Safari faux-bold/italic when a face is missing */
	font-synthesis: none;
	overflow-y: auto;
}

body.font-fa {
	/* Static dana preferred for FA — stable metrics, no mid-load weight jump */
	font-family: dana, 'dana VF', Tahoma, sans-serif;
}

body.font-fa .hero-title {
	text-transform: none;
	font-weight: 700;
	word-spacing: -8px;
}

@media (max-width: 767px) {
	body.font-fa .hero-title {
		word-spacing: -4px;
	}
}

body.font-fa .hero-sub {
	letter-spacing: -0.02em;
}

body.font-en {
	/* EN title needs 800 — VF first, static bold fallback */
	font-family: 'dana VF', dana, Tahoma, sans-serif;
}

body.font-en .hero-title {
	word-spacing: -0.04em;
	font-weight: 800;
}

@media (max-width: 767px) {
	body.font-en .hero-title {
		word-spacing: 0;
	}
}

body.font-en .hero-sub {
	letter-spacing: 0;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

html:not(.is-anim-ready) .logo,
html:not(.is-anim-ready) .custom-select,
html:not(.is-anim-ready) .hero-copy,
html:not(.is-anim-ready) .waitlist-form,
html:not(.is-anim-ready) .social-proof,
html:not(.is-anim-ready) #pod-wrap,
html:not(.is-anim-ready) .avatar,
html:not(.is-anim-ready) .guide-art,
html:not(.is-anim-ready) .footer {
	opacity: 0;
}

html:not(.is-anim-ready) .logo,
html:not(.is-anim-ready) .custom-select,
html:not(.is-anim-ready) .hero-copy,
html:not(.is-anim-ready) .waitlist-form,
html:not(.is-anim-ready) .social-proof,
html:not(.is-anim-ready) #pod-wrap,
html:not(.is-anim-ready) .avatar,
html:not(.is-anim-ready) .footer {
	transform: translate3d(0, -28px, 0);
}

/* Keep page visible during VT snapshot so language switch doesn't fade to blank */
html:active-view-transition:not(.is-anim-ready) .logo,
html:active-view-transition:not(.is-anim-ready) .custom-select,
html:active-view-transition:not(.is-anim-ready) .hero-copy,
html:active-view-transition:not(.is-anim-ready) .waitlist-form,
html:active-view-transition:not(.is-anim-ready) .social-proof,
html:active-view-transition:not(.is-anim-ready) #pod-wrap,
html:active-view-transition:not(.is-anim-ready) .avatar,
html:active-view-transition:not(.is-anim-ready) .guide-art,
html:active-view-transition:not(.is-anim-ready) .footer {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html:not(.is-anim-ready) .logo,
	html:not(.is-anim-ready) .custom-select,
	html:not(.is-anim-ready) .hero-copy,
	html:not(.is-anim-ready) .waitlist-form,
	html:not(.is-anim-ready) .social-proof,
	html:not(.is-anim-ready) #pod-wrap,
	html:not(.is-anim-ready) .avatar,
	html:not(.is-anim-ready) .guide-art,
	html:not(.is-anim-ready) .footer {
		opacity: 1;
		transform: none;
	}
}

.page {
	position: relative;
	/* overflow:hidden + filter/transform children = Safari clip bug; clip x only */
	overflow-x: hidden;
	overflow-y: visible;
	display: flex;
	flex-direction: column;
	padding: 40px;
	background: #fefefe;
	min-height: 100vh;
}

@media (max-width: 767px) {
	.page {
		padding: 0 16px;
	}
}

.page .coverBG {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	overflow: visible;
	height: auto;
	bottom: 0;
	width: auto;
}

@media (max-width: 767px) {
	.page .coverBG {
		display: none;
	}
}

.page .coverBG .guide-art {
	display: block;
	width: 1920px;
	height: 1080px;
	max-width: none;
	overflow: visible;
	flex-shrink: 0;
	/* Promote layer — Safari SVG stroke/clip painting */
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.page .inside {
	width: 1440px;
	margin: 0 auto;
	max-width: 100%;
	position: relative;
	z-index: 2;
	flex: 1;
}

@media (max-width: 767px) {
	.page .inside {
		height: 100%;
		display: flex;
		flex-direction: column;
	}
}

.page .inside .header {
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	direction: ltr;
	width: 1168px;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
}

@media (max-width: 767px) {
	.page .inside .header {
		padding: 16px 0;
		border-bottom: 1px solid #e7e6eb;
	}
}

.page .inside .header .logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}

.page .inside .header .logo-img {
	display: block;
	width: auto;
	height: 40px;
	max-width: 136px;
	flex-shrink: 0;
}

.page .inside .header .logo-img--mark {
	display: none;
}

@media (max-width: 767px) {
	.page .inside .header .logo .logo-img--full {
		display: none;
	}

	.page .inside .header .logo .logo-img--mark {
		display: block;
		height: 32px;
		max-width: 28px;
		width: auto;
	}
}

.page .inside .header .custom-select {
	position: relative;
	direction: ltr;
	z-index: 20;
}

.page .inside .header .custom-select__trigger {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 0 8px 12px;
	border: 0;
	border-radius: 8px;
	background: #ffffff;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 700;
	color: #3b3563;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.page .inside .header .custom-select__value {
	line-height: 1;
}

.page .inside .header .custom-select__arrow {
	display: block;
	flex-shrink: 0;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.page .inside .header .custom-select__menu {
	position: absolute;
	top: calc(100% + 6px);
	inset-inline-end: 0;
	min-width: 100%;
	margin: 0;
	padding: 4px;
	list-style: none;
	background: #ffffff;
	border: 1px solid #e7e6eb;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(10, 3, 60, 0.08);
	overflow: hidden;
	transform-origin: top center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.page .inside .header .custom-select__menu > li + li {
	margin-top: 4px;
}

.page .inside .header .custom-select__option {
	display: block;
	padding: 8px 12px;
	border-radius: 6px;
	text-decoration: none;
	font-family: 'Outfit', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	color: #3b3563;
	transition: background 0.2s ease, color 0.2s ease;
}

.page .inside .header .custom-select__option:hover {
	background: #f7f6f9;
}

.page .inside .header .custom-select__option.is-active {
	color: var(--brand);
	background: rgba(255, 127, 102, 0.1);
}

.page .inside .header .custom-select.is-open .custom-select__menu {
	visibility: visible;
	pointer-events: auto;
}

.page .inside .hero {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 80px 0;
	width: 1168px;
	margin: 0 auto;
	max-width: 100%;
}

@media (max-width: 767px) {
	.page .inside .hero {
		padding: 40px 0;
	}
}

.page .inside .hero {
	/* Title + sub as one flex unit — Safari ignores/collapses margins between
	   transformed flex siblings; gap stays stable during font swap + intro. */
}

.page .inside .hero .hero-copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	gap: 12px;
	margin: 0 0 32px;
}

@media (max-width: 767px) {
	.page .inside .hero .hero-copy {
		gap: 8px;
	}
}

.page .inside .hero-title {
	font-size: clamp(1.75rem, 4vw, 48px);
	line-height: var(--lh-title);
	color: var(--text);
	margin: 0;
	padding: 0 20px;
	-webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
	.page .inside .hero-title {
		padding: 0;
		line-height: var(--lh-tight);
	}
}

.page .inside .hero-sub {
	font-size: clamp(0.9rem, 1.6vw, 18px);
	line-height: var(--lh-body);
	font-weight: 400;
	color: #6c688a;
	margin: 0;
	padding: 0 20px;
	width: 860px;
	max-width: 100%;
}

@media (max-width: 767px) {
	.page .inside .hero-sub {
		padding: 0;
	}
}

.page .footer {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 8px;
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0;
	color: #6c688a;
	width: 1168px;
	max-width: calc(100% - 32px);
	padding: 8px 16px;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	z-index: 2;
}

.page .footer .footer-text {
	margin: 0;
	text-align: start;
}

.page .footer .footer-links {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-inline-start: auto;
}

.page .footer .footer-links a {
	color: #6c688a;
	text-decoration: none;
}

.page .footer .footer-links a:hover {
	color: #0a033c;
	text-decoration: underline;
}

@media (max-width: 767px) {
	.page .footer {
		position: relative;
		bottom: auto;
		margin-top: 24px;
		padding: 8px 0;
		flex-wrap: wrap;
		row-gap: 8px;
	}
}

.legal-page {
	min-height: 100vh;
	background: #fefefe;
	color: #0a033c;
	padding: 24px 16px 48px;
}

.legal-page__header {
	max-width: 720px;
	margin: 0 auto 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.legal-page__header .logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}

.legal-page__header .logo-img {
	display: block;
	width: auto;
	height: 40px;
	max-width: 136px;
	flex-shrink: 0;
}

.legal-page__header .logo-img--mark {
	display: none;
}

.legal-page__lang a {
	color: #3b3563;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

.legal-page__lang a:hover {
	color: #ff7f66;
}

.legal-page__main {
	max-width: 720px;
	margin: 0 auto;
}

.legal-page__badge {
	display: inline-block;
	margin: 0 0 12px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #fff1ee;
	color: #ff6652;
	font-size: 12px;
	font-weight: 600;
}

.legal-page__title {
	margin: 0 0 8px;
	font-size: 32px;
	line-height: 1.3;
	font-weight: 700;
	color: #0a033c;
}

.legal-page__updated {
	margin: 0 0 28px;
	color: #6c688a;
	font-size: 13px;
}

.legal-page__body {
	font-size: 15px;
	line-height: 1.8;
	color: #3b3563;
}

.legal-page__body h2 {
	margin: 28px 0 10px;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 700;
	color: #0a033c;
}

.legal-page__body p,
.legal-page__body ul {
	margin: 0 0 12px;
}

.legal-page__body ul {
	padding-inline-start: 1.25em;
}

.legal-page__body a {
	color: #ff6652;
	text-decoration: none;
}

.legal-page__body a:hover {
	text-decoration: underline;
}

.legal-page__footer {
	max-width: 720px;
	margin: 40px auto 0;
	padding-top: 24px;
	border-top: 1px solid #e7e6eb;
	text-align: center;
}

.legal-page__links {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 8px;
	font-size: 13px;
}

.legal-page__links a {
	color: #6c688a;
	text-decoration: none;
}

.legal-page__links a:hover {
	color: #0a033c;
	text-decoration: underline;
}

.legal-page__copy {
	margin: 0;
	color: #6c688a;
	font-size: 12px;
}

@media (max-width: 767px) {
	.legal-page__header .logo-img--full {
		display: none;
	}

	.legal-page__header .logo-img--mark {
		display: block;
		height: 32px;
		max-width: 28px;
		width: auto;
	}

	.legal-page__title {
		font-size: 26px;
	}
}

.waitlist-form {
	width: 100%;
	margin-bottom: 28px;
}

@media (max-width: 767px) {
	.waitlist-form {
		margin-bottom: 16px;
		transition: margin-bottom 0.2s ease;
	}

	.waitlist-form.is-success {
		margin-bottom: 32px;
	}
}

.waitlist-form .waitlist-bar {
	display: flex;
	gap: 0;
	background: #ffffff;
	border: 1px solid #e7e6eb;
	border-radius: 4px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	padding: 12px;
	width: 568px;
	max-width: 100%;
	margin: auto;
}

@media (max-width: 767px) {
	.waitlist-form .waitlist-bar {
		padding-block: 4px;
		padding-inline-start: 12px;
		padding-inline-end: 4px;
	}
}

.waitlist-form .waitlist-bar:focus-within {
	border-color: rgba(255, 90, 67, 0.45);
}

.waitlist-form .waitlist-bar .waitlist-input {
	flex: 1;
	min-width: 0;
	border: none;
	background: transparent;
	font: inherit;
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}

@media (max-width: 767px) {
	.waitlist-form .waitlist-bar .waitlist-input {
		font-size: 14px;
	}
}

.waitlist-form .waitlist-bar .waitlist-input::placeholder {
	color: #e7e6eb;
}

.waitlist-form .waitlist-bar .waitlist-btn {
	position: relative;
	overflow: hidden;
	border: none;
	background: var(--brand);
	color: #ffffff;
	font: inherit;
	padding: 8px 24px;
	cursor: pointer;
	transition: background 0.2s ease;
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: -0.01em;
	border-radius: 4px;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.waitlist-form .waitlist-bar .waitlist-btn:hover {
	background: var(--brand-hover);
}

.waitlist-form .waitlist-bar .waitlist-btn:disabled {
	cursor: wait;
}

.waitlist-form .waitlist-bar .waitlist-btn .btn-label {
	position: relative;
	z-index: 1;
	transition: opacity 0.2s ease;
}

@media (max-width: 767px) {
	.waitlist-form .waitlist-bar .waitlist-btn .btn-label span {
		display: none;
	}
}

.waitlist-form .waitlist-bar .waitlist-btn .btn-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	border-top-color: #ff6652;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 2;
}

.waitlist-form .waitlist-bar .waitlist-btn.is-loading .btn-label,
.waitlist-form .waitlist-bar .waitlist-btn.is-loading .btn-shimmer {
	opacity: 0;
}

.waitlist-form .waitlist-bar .waitlist-btn.is-loading .btn-shimmer {
	-webkit-animation: none;
	animation: none;
}

.waitlist-form .waitlist-bar .waitlist-btn.is-loading .btn-spinner {
	opacity: 1;
	visibility: visible;
	-webkit-animation: btn-spin 0.7s linear infinite;
	animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.waitlist-form .waitlist-bar .waitlist-btn.is-loading .btn-spinner {
		animation: none;
		border-top-color: #ffffff;
		opacity: 0.85;
	}
}

.waitlist-form.is-error .waitlist-bar {
	border-color: #d7263d;
}

.waitlist-form.is-error .waitlist-bar:focus-within {
	border-color: #d7263d;
}

.btn-shimmer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
	/* Physical X — independent of dir=rtl; avoid GSAP x/% fighting CSS transform */
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	pointer-events: none;
	z-index: 0;
	/* 0.85s sweep + 3.2s hold ≈ 4.05s cycle (matches previous GSAP loop) */
	-webkit-animation: btn-shimmer-sweep 4.05s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
	animation: btn-shimmer-sweep 4.05s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@-webkit-keyframes btn-shimmer-sweep {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	21% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes btn-shimmer-sweep {
	0% {
		transform: translate3d(-100%, 0, 0);
	}
	21% {
		transform: translate3d(100%, 0, 0);
	}
	100% {
		transform: translate3d(100%, 0, 0);
	}
}

/* Pause shimmer on real hover only — iOS sticky :hover otherwise freezes mid-sweep */
@media (hover: hover) and (pointer: fine) {
	.waitlist-btn:hover .btn-shimmer {
		-webkit-animation: none;
		animation: none;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn-shimmer {
		-webkit-animation: none !important;
		animation: none !important;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.form-message {
	margin-top: 0;
	font-size: 0.875rem;
	font-weight: 500;
	color: #28a953;
	height: 0;
	overflow: hidden;
}

@media (max-width: 767px) {
	.form-message {
		font-size: 12px;
	}
}

.form-message.is-error {
	color: #d7263d;
}

.form-message[hidden] {
	display: block !important;
	visibility: hidden;
	pointer-events: none;
	height: 0 !important;
	margin-top: 0 !important;
	overflow: hidden;
}

.form-success {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	color: #28a953;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	margin-top: 16px;
	text-align: center;
}

@media (max-width: 767px) {
	.form-success {
		font-size: 12px;
		line-height: 1.75;
		margin-top: 0;
	}
}

.form-success__text {
	margin: 0;
}

.form-success__text strong {
	font-size: 18px;
	font-weight: 700;
	display: block;
}

.form-success[hidden] {
	display: flex !important;
	visibility: hidden;
	pointer-events: none;
	height: 0 !important;
	overflow: hidden;
}

.waitlist-form.is-success .waitlist-bar[hidden] {
	display: none !important;
}

.social-proof {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

@media (max-width: 767px) {
	.social-proof {
		margin-bottom: 80px;
	}
}

@media (max-height: 700px) {
	.social-proof {
		margin-bottom: 60px;
	}
}

.social-proof .social-text {
	position: relative;
	font-size: 16px;
	color: #6c688a;
	font-weight: 400;
	line-height: 1.75;
	display: flex;
	/* baseline keeps bold/regular Persian on one line — flex-end dropped strong */
	align-items: baseline;
	gap: 10px;
	white-space: nowrap;
	min-height: 36px;
	padding-block: 12px;
	margin-block: -12px;
}

@media (max-width: 767px) {
	.social-proof .social-text {
		font-size: 14px;
		gap: 4px;
	}
}

.social-proof .social-text strong {
	color: #0a033c;
	font-weight: 700;
	/* Same line box as surrounding text in Safari */
	font-style: normal;
	vertical-align: baseline;
	line-height: inherit;
}

.social-proof .social-text .avatars {
	display: flex;
	align-items: flex-end;
	align-self: flex-end;
	height: 36px;
	overflow: visible;
	transform: translateY(4px);
}

@media (max-height: 700px) {
	.social-proof .social-text .avatars {
		display: none;
	}
}

@media (max-width: 767px) {
	.social-proof .social-text .avatars {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin: auto;
		justify-content: center;
		margin-top: 12px;
	}
}

.social-proof .social-text .avatars .avatar {
	/* Full hover size in layout — scale DOWN at rest so hover stays sharp */
	width: 40px;
	height: 51px;
	border-radius: 2px;
	object-fit: cover;
	margin-inline-end: -18px;
	box-shadow: -6px 4px 12px 0px rgba(0, 0, 0, 0.2509803922);
	position: relative;
	flex-shrink: 0;
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	/* Avoid Safari image flicker when GSAP scales */
	-webkit-user-drag: none;
}

.social-proof .social-text .avatars .avatar:last-child {
	margin-inline-end: 0;
}

.social-proof .social-text .avatars .avatar:nth-child(1) {
	transform: rotate(9.49deg) scale(0.7);
	z-index: 3;
}

.social-proof .social-text .avatars .avatar:nth-child(2) {
	transform: rotate(0deg) scale(0.7);
	z-index: 2;
}

.social-proof .social-text .avatars .avatar:nth-child(3) {
	transform: rotate(-8.23deg) scale(0.7);
	z-index: 1;
}

body.font-en .social-proof .social-text .avatars .avatar:nth-child(1) {
	transform: rotate(-9.49deg) scale(0.7);
	z-index: 1;
}

body.font-en .social-proof .social-text .avatars .avatar:nth-child(2) {
	z-index: 2;
}

body.font-en .social-proof .social-text .avatars .avatar:nth-child(3) {
	transform: rotate(8.23deg) scale(0.7);
	z-index: 3;
}

.pod-wrap {
	position: relative;
	width: 100%;
	max-width: 723px;
	/* Keep this node transform-free so Safari mix-blend-mode can reach the page bg */
}

@media (max-width: 767px) {
	.pod-wrap {
		margin-top: auto;
		margin-bottom: 40px;
	}
}

.pod-wrap .pod-stage {
	position: relative;
	width: 100%;
	z-index: -1;
	/* Multiply on the img — not a transformed ancestor wrapper */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.pod-wrap .pod-stage .pod-img {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 1;
	user-select: none;
	-webkit-user-select: none;
	pointer-events: none;
	mix-blend-mode: multiply;
	-webkit-user-drag: none;
}

.pod-wrap .pod-shadow {
	position: absolute;
	pointer-events: none;
	left: -64px;
	right: 0;
	bottom: -64px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.pod-wrap .pod-shadow svg {
	overflow: visible;
	width: 100%;
	display: block;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}