:root {
	--bg: #f3f3f4;
	--ink: #0f0f10;
	--muted: #5f5f5f;
	--accent: #7752d9;
	--accent-2: #7b64ee;
	--panel-soft: #f2f1f8;
	--white: #ffffff;

	--hero-bg: #ffffff;
	--hero-ink: #0f0f10;
	--hero-text: #1e1d1f;
	--hero-accent: #7752d9;
	--hero-panel: #7752d9;
	--hero-white: #ffffff;

	--container-max: 1280px;
	--container-padding: 64px;

	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;

	--shadow-soft: 0 10px 30px rgba(80, 55, 180, 0.12);
	--shadow-button: 0 10px 22px rgba(111, 86, 220, 0.22);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	background: var(--white);
	color: var(--ink);
}

body.is-loading {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: "Manrope", sans-serif;
}

h1 {
	font-weight: 800;
}

p {
	margin: 0;
	font-weight: 400;
}

button {
	font-family: inherit;
	font-weight: 600;
}

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

.container-fluid,
.container-limit,
.container {
	position: relative;
	width: 100%;
}

.container-fluid {
	padding: 0 var(--container-padding);
}

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

.container-holder {
	display: grid;
	grid-template-columns: minmax(420px, 1fr) minmax(520px, 620px);
	align-items: center;
	column-gap: 108px;
}

.left-wrapper,
.right-wrapper {
	max-width: none;
}

.section-wrapper {
	position: relative;
	overflow: hidden;
	padding: 0;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 900ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.section-wrapper.loaded {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================
   PAGE LOADER
========================================= */

.page-loader {
	position: fixed;
	inset: 0;
	z-index: 12000;
	display: grid;
	place-items: center;
	padding: 30px;
	background: #0f0f10;
	isolation: isolate;
	opacity: 1;
	visibility: visible;
	transition: opacity 500ms ease, visibility 500ms ease;
}

.page-loader__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 18%, transparent 42%),
		radial-gradient(circle at 85% 80%, rgba(119, 82, 217, 0.28) 0%, rgba(119, 82, 217, 0.12) 22%, transparent 48%),
		linear-gradient(135deg, #0f0f10 0%, #141416 55%, #7752d9 140%);
	transform: scale(1);
	transform-origin: center;
	transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader__inner {
	width: min(900px, 100%);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22px;
}

.page-loader__brand {
	font-size: 13px;
	line-height: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.64);
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 500ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader__headline {
	display: grid;
	gap: 6px;
	font-size: clamp(44px, 9vw, 108px);
	line-height: 100px;
	font-weight: 700;
	letter-spacing: -4px;
	color: #f8f8ff;
}

.page-loader__line {
	overflow: hidden;
}

.page-loader__line span {
	display: block;
	opacity: 0;
	transform: translateY(115%);
	text-shadow: 0 0 24px rgba(123, 100, 238, 0.08);
	will-change: transform, opacity;
	transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease;
}

.page-loader.is-active .page-loader__brand {
	opacity: 1;
	transform: translateY(0);
}

.page-loader.is-active .page-loader__line span {
	opacity: 1;
	transform: translateY(0);
}

.page-loader.is-active .page-loader__line:nth-child(1) span {
	transition-delay: 80ms;
}

.page-loader.is-active .page-loader__line:nth-child(2) span {
	transition-delay: 180ms;
}

.page-loader.is-active .page-loader__line:nth-child(3) span {
	transition-delay: 280ms;
}

.page-loader.is-leaving .page-loader__brand {
	opacity: 0;
	transform: translateY(-10px);
}

.page-loader.is-leaving .page-loader__line span {
	opacity: 0;
	transform: translateY(-110%);
}

.page-loader.is-leaving .page-loader__line:nth-child(2) span {
	transition-delay: 50ms;
}

.page-loader.is-leaving .page-loader__line:nth-child(3) span {
	transition-delay: 100ms;
}

.page-loader.is-leaving .page-loader__bg {
	transform: scaleY(0);
	transform-origin: top center;
	transition-delay: 180ms;
}

.page-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.page-loader,
	.page-loader * {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* =========================================
   NAVBAR
========================================= */

.navbar {
	position: relative;
	z-index: 40;
	padding: 10px var(--container-padding) 0;
	background: transparent;
}

.privacy-page .navbar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 80;
	padding-top: 12px;
}

.navbar__inner {
	max-width: var(--container-max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 68px;
	padding: 10px 20px;
	background: var(--ink);
	border-radius: 20px;
}

.navbar__brand {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.3px;
	flex-shrink: 0;
}

.navbar__brand-icon {
	color: var(--white);
	flex-shrink: 0;
}

.navbar__toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	color: var(--white);
}

.navbar__toggle-line {
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 220ms ease, opacity 220ms ease;
}

.navbar__nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.navbar__list {
	list-style: none;
	margin: 0;
	padding: 8px 14px;
	display: flex;
	align-items: center;
	gap: 2px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 10px;
}

.navbar__item--mobile-cta {
	display: none;
}

.navbar__link {
	display: block;
	padding: 7px 16px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 10px;
	transition: color 200ms ease, background 200ms ease;
	white-space: nowrap;
}

.navbar__link:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.1);
}

.navbar__cta {
	display: inline-flex;
	align-items: center;
	padding: 10px 26px;
	background: var(--white);
	color: var(--ink);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	border-radius: 10px;
	flex-shrink: 0;
	transition: background 200ms ease, box-shadow 200ms ease;
}

.navbar__cta:hover {
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.18);
}

/* =========================================
   CURSOR
========================================= */

.cursor-follow-dot {
	--circle-size: 16px;
	position: fixed;
	top: -8px;
	left: -8px;
	width: var(--circle-size);
	height: var(--circle-size);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9000;
	background: var(--accent);
	opacity: 0;
}

.cursor-follow-dot.is-visible {
	opacity: 1;
}

/* =========================================
   REVEAL
========================================= */

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

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 {
	transition-delay: 120ms;
}

/* =========================================
   SHARED BUTTON
========================================= */

.mygoto-button-content .cta .slide-fill-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: 282px;
	height: 62px;
	padding: 0 16px 0 32px;
	gap: 8px;
	border: 1px solid var(--accent);
	border-radius: 38px;
	background: var(--accent);
	color: var(--white);
	text-decoration: none;
	font-family: "Youth", sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	overflow: hidden;
	isolation: isolate;
	transition: color 250ms ease, transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
	z-index: 1;
}

.mygoto-button-content .cta .slide-fill-btn::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	height: 100%;
	background: var(--white);
	border-radius: inherit;
	z-index: 0;
	transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mygoto-button-content .cta .slide-fill-btn:hover {
	color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(119, 82, 217, 0.16);
	border-color: var(--accent);
}

.mygoto-button-content .cta .slide-fill-btn:hover::before {
	width: 100%;
}

.mygoto-button-content .cta .slide-fill-btn .slide-fill-btn__content {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	width: 100%;
	height: 100%;
	gap: 6px;
}

.mygoto-button-content .cta .slide-fill-btn .cta-label {
	margin-right: auto;
	white-space: nowrap;
}

.mygoto-button-content .cta .slide-fill-btn .store-icons {
	position: relative;
	z-index: 1;
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	flex: 0 0 46px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: currentColor;
	transition: background-color 250ms ease, color 250ms ease;
}

.mygoto-button-content .cta .slide-fill-btn .store-icons svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.mygoto-button-content .cta .slide-fill-btn:hover .store-icons {
	background: rgba(119, 82, 217, 0.1);
	color: var(--accent);
}

/* =========================================
   PROMO SHOWCASE / HERO
========================================= */

.promo-showcase {
	padding: 72px 0;
	margin-top: 140px;
}

.promo-showcase .container-holder {
	grid-template-columns: minmax(0, 520px) minmax(0, 520px);
	justify-content: center;
	justify-items: center;
	column-gap: 88px;
	align-items: center;
}

.promo-showcase .left-wrapper,
.promo-showcase .right-wrapper {
	width: 100%;
}

.promo-showcase .inside-holder {
	position: relative;
	width: 100%;
}

.promo-showcase .inside-holder:not([aria-hidden="true"]) {
	max-width: 420px;
	margin: 0 auto;
}

.promo-showcase .inside-holder[aria-hidden="true"] {
	position: relative;
	width: 100%;
	min-height: 620px;
	overflow: visible;
	isolation: isolate;
}

.promo-showcase .purple-panel {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 560px;
	height: 580px;
	transform: translate(-50%, -50%);
	border-radius: 24px;
	background-color: #6e4bc2;
	/* box-shadow: 0 26px 60px rgba(70, 36, 160, 0.22); */
	z-index: 1;
}
/* .promo-showcase .purple-panel::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 68%;
	background: inherit;
	border-radius: 0 0 24px 24px;
	z-index: 3;
}
.promo-showcase .purple-panel::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 38%;
	transform: translateX(-50%);
	width: 82%;
	height: 120px;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.10) 0%,
		rgba(255, 255, 255, 0.03) 35%,
		rgba(255, 255, 255, 0) 100%
	);
	filter: blur(10px);
	z-index: 2;
	pointer-events: none;
} */

.promo-showcase .phone-image {
	position: absolute;
	left: 50%;
	top: 43%;
	z-index: 2;
	width: 430px;
	max-width: none;
	object-fit: contain;
	--phone-parallax-y: 0px;
	--phone-scale: 1;
	transform: translate(-50%, calc(-50% + var(--phone-parallax-y))) scale(var(--phone-scale));
	will-change: transform, opacity;
	transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms ease;
    
}
/* kjo e pret vetem pjesen e poshtme te telefonit */
.promo-showcase .phone-bottom-mask {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 560px;
	height: 580px;
	transform: translate(-50%, -50%);
	border-radius: 24px;
	z-index: 3;
	pointer-events: none;
}

/* mbulo vetem zonen poshte panelit */
.promo-showcase .phone-bottom-mask::after {
	content: "";
	position: absolute;
	left: -40px;
	right: -40px;
	bottom: -120px;
	height: 140px;
	background: var(--white);
}
.promo-showcase h2 {
	font-size: 58px;
	line-height: 62px;
	font-weight:600;
	letter-spacing: -2px;
	color: #0f0f10;
}

.promo-showcase p {
	margin-top: 24px;
	max-width: 360px;
	font-size: 18px;
	line-height: 28px;
	color: #1E1D1F;
	font-weight: 400;
}

.promo-showcase .mygoto-button-content {
	margin-top: 26px;
}

.promo-showcase .reveal {
	opacity: 0;
	filter: blur(8px);
	will-change: transform, opacity, filter;
	transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms ease, filter 900ms ease;
}

.promo-showcase .left-wrapper.reveal {
	transform: translate3d(-72px, 0, 0);
}

.promo-showcase .right-wrapper.reveal {
	transform: translate3d(72px, 0, 0);
	transition-delay: 180ms;
}

.promo-showcase .reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	filter: blur(0);
}

.promo-showcase .inside-holder:not([aria-hidden="true"]) > * {
	opacity: 0;
	transform: translateY(22px);
	will-change: transform, opacity;
	transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.promo-showcase .reveal.is-visible .inside-holder:not([aria-hidden="true"]) > *:nth-child(1) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 120ms;
}

.promo-showcase .reveal.is-visible .inside-holder:not([aria-hidden="true"]) > *:nth-child(2) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 240ms;
}

.promo-showcase .reveal.is-visible .inside-holder:not([aria-hidden="true"]) > *:nth-child(3) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 360ms;
}

.promo-showcase .left-wrapper.reveal .phone-image,
.promo-showcase .right-wrapper.reveal .phone-image {
	opacity: 0;
	--phone-scale: 0.94;
}

.promo-showcase .reveal.is-visible .phone-image {
	opacity: 1;
	--phone-scale: 1;
}

/* =========================================
   BENTO GRID
========================================= */

.section-wrapper[data-interface="bento-grid"] {
	padding: 38px 0 112px;
	opacity: 1;
	transform: none;
}

.section-wrapper[data-interface="bento-grid"] .bento-card-inner h1 span {
	color: var(--hero-accent);
}

.bento-grid {
	display: grid;
	grid-template-columns: 486px 384px 282px;
	grid-template-rows: 224px 400px;
	gap: 16px;
	width: max-content;
	margin: 0 auto;
	justify-content: center;
}

.bento-card {
	position: relative;
}

.bento-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.bento-card--text {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	width: 486px;
	height: 640px;
}

.bento-card-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.bento-card--text h1 {
	margin-bottom: 24px;
	font-size: 70px;
	line-height: 69px;
	font-weight: 600;
	letter-spacing: -3px;
	color: var(--ink);
}

.bento-card--text p {
	margin-bottom: 28px;
	max-width: 372px;
	font-size: 18px;
	line-height: 28px;
	color: #1E1D1F;
	letter-spacing: 0%;
}

.bento-card--text .mygoto-button-content,
.bento-card--text .mygoto-button-content .cta,
.bento-card--text .mygoto-button-content .cta .btn {
	width: 282px;
	max-width: 282px;
}

.bento-card--text .mygoto-button-content .cta .btn {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: 282px;
	height: 70px;
	padding: 0 16px 0 32px;
	gap: 8px;
	border-radius: 38px;
	background: var(--accent);
	color: var(--white);
	border: 1px solid var(--accent);
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	transition: background-color 280ms ease, color 280ms ease, border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.bento-card--text .mygoto-button-content .cta .btn:hover {
	background: var(--white);
	color: var(--accent);
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(119, 82, 217, 0.16);
}

.bento-card--text .mygoto-button-content .cta .btn:hover .store-icons {
	background: rgba(119, 82, 217, 0.12);
	color: var(--accent);
}

.bento-card--text .cta-label {
	margin-right: auto;
	white-space: nowrap;
}

.bento-card--text .store-icons {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	flex: 0 0 46px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
}

.bento-card--text .store-icons svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.bento-card--tall {
	grid-column: 2 / 3;
	grid-row: 1 / 3;
	width: 384px;
	height: 640px;
}

.bento-card--sm {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
	width: 282px;
	height: 224px;
}

.bento-card--xs {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
	width: 282px;
	height: 400px;
}

.bento-image-tag {
	position: absolute;
	left: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	height: 42px;
	padding: 0 16px;
	border-radius: 15px;
	background: linear-gradient(49deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	color: #1e1d1f;
	font-size: 14px;
	line-height: 14px;
	font-weight: 600;
	z-index: 3;
	box-shadow: 0 6px 14px rgba(15, 15, 16, 0.12);
}

.bento-image-tag::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #7450dd;
	margin-right: 8px;
	flex: 0 0 8px;
}

/* =========================================
   BENTO ENTRY ANIMATION
========================================= */

.section-wrapper[data-interface="bento-grid"] {
	opacity: 1;
	transform: none;
}

.section-wrapper[data-interface="bento-grid"] .bento-card--tall,
.section-wrapper[data-interface="bento-grid"] .bento-card--sm,
.section-wrapper[data-interface="bento-grid"] .bento-card--xs {
	opacity: 0;
	will-change: transform, opacity, filter;
}

.section-wrapper[data-interface="bento-grid"] .bento-card--tall {
	transform: translate3d(0, 46px, 0) scale(0.94) rotate(-2deg);
	filter: blur(10px);
	transition:
		opacity 720ms ease,
		transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 820ms ease;
}

.section-wrapper[data-interface="bento-grid"] .bento-card--sm {
	transform: translate3d(42px, -18px, 0) scale(0.92) rotate(3deg);
	filter: blur(10px);
	transition:
		opacity 720ms ease,
		transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 820ms ease;
}

.section-wrapper[data-interface="bento-grid"] .bento-card--xs {
	transform: translate3d(36px, 26px, 0) scale(0.92) rotate(2deg);
	filter: blur(10px);
	transition:
		opacity 720ms ease,
		transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 820ms ease;
}

.section-wrapper[data-interface="bento-grid"] .bento-card img {
	transform: scale(1.08);
	transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-wrapper[data-interface="bento-grid"] .bento-image-tag {
	opacity: 0;
	transform: translateY(14px);
	transition:
		opacity 520ms ease,
		transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* gjendja aktive */
.section-wrapper[data-interface="bento-grid"].bento-animate-in .bento-card--tall,
.section-wrapper[data-interface="bento-grid"].bento-animate-in .bento-card--sm,
.section-wrapper[data-interface="bento-grid"].bento-animate-in .bento-card--xs {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
	filter: blur(0);
}

.section-wrapper[data-interface="bento-grid"].bento-animate-in .bento-card img {
	transform: scale(1);
}

.section-wrapper[data-interface="bento-grid"].bento-animate-in .bento-card--tall .bento-image-tag {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 260ms;
}

.section-wrapper[data-interface="bento-grid"].bento-animate-in .bento-card--sm .bento-image-tag {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 360ms;
}

.section-wrapper[data-interface="bento-grid"].bento-animate-in .bento-card--xs .bento-image-tag {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 460ms;
}

/* stagger */
.section-wrapper[data-interface="bento-grid"].bento-animate-in .bento-card--tall {
	transition-delay: 0ms;
}

.section-wrapper[data-interface="bento-grid"].bento-animate-in .bento-card--sm {
	transition-delay: 130ms;
}

.section-wrapper[data-interface="bento-grid"].bento-animate-in .bento-card--xs {
	transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
	.section-wrapper[data-interface="bento-grid"] .bento-card--tall,
	.section-wrapper[data-interface="bento-grid"] .bento-card--sm,
	.section-wrapper[data-interface="bento-grid"] .bento-card--xs,
	.section-wrapper[data-interface="bento-grid"] .bento-card img,
	.section-wrapper[data-interface="bento-grid"] .bento-image-tag {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
		transition: none !important;
	}
}
.bento-card--text {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 700ms ease,
		transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-grid.is-visible .bento-card--text {
	opacity: 1;
	transform: translateY(0);
}
/* =========================================
   REQUESTS SHOWCASE
========================================= */

.section-wrapper[data-interface="requests-showcase"] {
	margin-top: 250px;
	overflow: visible;
}

.section-wrapper[data-interface="requests-showcase"] .container-holder {
	grid-template-columns: minmax(430px, 520px) minmax(420px, 1fr);
	column-gap: 204px;
	align-items: center;
}

.section-wrapper[data-interface="requests-showcase"] .left-wrapper {
	position: relative;
	z-index: 2;
	overflow: visible;
}

.section-wrapper[data-interface="requests-showcase"] .right-wrapper .inside-holder {
	min-height: auto;
	display: block;
	padding: 0;
}

.requests-board-wrap {
	display: flex;
	justify-content: flex-start;
	overflow: visible;
}

.requests-board {
	position: relative;
	width: 100%;
	max-width: 520px;
	height: 620px;
	padding: 61px;
	border-radius: 30px;
	background: #7752d9;
	overflow: visible;
	clip-path: inset(0 -120px 0 0 round 30px);
}

.requests-track {
	display: flex;
	flex-direction: column;
	gap: 16px;
	will-change: transform;
	transform: translateY(0);
}

.requests-board::before,
.requests-board::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 110px;
	z-index: 3;
	pointer-events: none;
	display: none;
}

.requests-board::before {
	top: 0;
	background: linear-gradient(to bottom, rgba(116, 80, 221, 0.78) 0%, rgba(116, 80, 221, 0) 100%);
}

.requests-board::after {
	bottom: 0;
	background: linear-gradient(to top, rgba(116, 80, 221, 0.78) 0%, rgba(116, 80, 221, 0) 100%);
}

.request-card {
	position: relative;
	display: grid;
	grid-template-columns: 88px 1fr;
	align-items: center;
	gap: 16px;
	width: 100%;
	min-height: 114px;
	padding: 14px;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 8px 18px rgba(15, 15, 16, 0.08);
	z-index: 1;
	transition: transform 260ms ease, box-shadow 260ms ease;
}

.request-card:hover {
	transform: translateX(80px);
	box-shadow: 0 16px 28px rgba(15, 15, 16, 0.18);
	z-index: 999;
}

.request-thumb {
	width: 88px;
	height: 88px;
	border-radius: 14px;
	overflow: hidden;
}

.request-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.request-copy h3 {
	margin-bottom: 6px;
	font-size: 18px;
	line-height: 20px;
	font-weight: 600;
	color: #17171c;
}

.request-copy p,
.left-wrapper .inside-holder .request-copy p {
	font-size: 14px;
	line-height: 20px;
	color: #555861;
	max-width: 240px;
}

.requests-content h2 {
	font-size: 72px;
	line-height: 70px;
	font-weight: 500;
	letter-spacing: -3px;
	color: #111217;
}

.requests-content h2 span {
	color: var(--accent);
}

.requests-content p {
	margin: 28px 0 34px;
	max-width: 510px;
	font-size: 18px;
	line-height: 27px;
	color: var(--muted);
}

.requests-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	padding: 0 34px;
	border-radius: 999px;
	background: #7752d9;
	color: #ffffff;
	border: 1px solid var(--accent);
	text-decoration: none;
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	box-shadow: var(--shadow-button);
	transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.requests-cta:hover {
	background: var(--white);
	color: var(--accent);
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(111, 86, 220, 0.28);
}

.requests-cta.blob-btn {
	--blob-fill: #7752d9;
	--blob-hover-fill: #e2e2fd;
	--blob-text-default: #ffffff;
	--blob-text-hover: #7752d9;
	--blob-radius: 999px;

	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	padding: 0 34px;
	border: 0;
	outline: none;
	background: transparent;
	color: var(--blob-text-default);
	text-decoration: none;
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	border-radius: var(--blob-radius);
	cursor: pointer;
	overflow: visible;
	isolation: isolate;
	box-shadow: none;
	transition: color 450ms ease, transform 220ms ease, box-shadow 220ms ease;
	z-index: 1;
	width: 204px;
}

.requests-cta.blob-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--blob-radius);
	background: var(--blob-fill);
	z-index: -2;
}

.requests-cta.blob-btn .blob-btn__text {
	position: relative;
	z-index: 5;
}

.requests-cta.blob-btn .blob-btn__inner {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: var(--blob-radius);
	background: transparent;
	z-index: -1;
}

.requests-cta.blob-btn .blob-btn__blobs {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	filter: url("#goo");
}

.requests-cta.blob-btn .blob-btn__blob {
	position: absolute;
	top: 2px;
	width: 25%;
	height: 100%;
	background: var(--blob-hover-fill);
	border-radius: 100%;
	transform: translate3d(0, 150%, 0) scale(1.4);
	transition: transform 450ms ease;
	will-change: transform;
}

.requests-cta.blob-btn .blob-btn__blob:nth-child(1) {
	left: 0%;
	transition-delay: 0s;
}

.requests-cta.blob-btn .blob-btn__blob:nth-child(2) {
	left: 25%;
	transition-delay: 80ms;
}

.requests-cta.blob-btn .blob-btn__blob:nth-child(3) {
	left: 50%;
	transition-delay: 160ms;
}

.requests-cta.blob-btn .blob-btn__blob:nth-child(4) {
	left: 75%;
	transition-delay: 240ms;
}

.requests-cta.blob-btn:hover {
	color: var(--blob-text-hover);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(119, 82, 217, 0.12);
}

.requests-cta.blob-btn:hover .blob-btn__blob {
	transform: translate3d(0, 0, 0) scale(1.4);
}

/* =========================================
   KEY FEATURES
========================================= */

.section-wrapper[data-interface="key-features"] {
	padding: 8px 0 100px;
	margin-top: 214px;
}

.key-features-wrap {
	margin: 0 auto;
}

.key-features-title {
	margin-bottom: 50px;
	text-align: center;
	font-size: 54px;
	line-height: 54px;
	font-weight: 600;
	letter-spacing: -2px;
	color: #111217;
}

.key-features-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.feature-card {
	min-height: 300px;
	padding: 28px 32px 26px 50px;
	background: #ecebff;
	border-radius: 14px;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 26px rgba(34, 34, 52, 0.1);
}

.feature-preview {
	width: 100%;
	height: 210px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 56px;
}

.feature-map-image {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.feature-card h3 {
	margin-bottom: 6px;
	font-size: 24px;
	line-height: 36px;
	font-weight: 600;
	letter-spacing: 0%;
	color: #0F0F10;
}

.feature-card p {
	margin-bottom: 12px;
	font-size: 18px;
	line-height: 28px;
	color: #1E1D1F;
}

.feature-preview--map {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #59a2ff;
	background: #d7d9e2;
}

.map-preview-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 72% 28%, #bddf95 0 68px, transparent 69px),
		linear-gradient(135deg, rgba(255, 255, 255, 0.85) 8%, rgba(208, 220, 231, 0.85) 10%, rgba(255, 255, 255, 0.85) 12%, rgba(255, 255, 255, 0.85) 18%, rgba(208, 220, 231, 0.85) 20%, rgba(255, 255, 255, 0.85) 24%);
	background-size: auto, 64px 64px;
}

.map-pin {
	position: absolute;
	top: 14px;
	right: 76px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 8px 16px rgba(38, 42, 78, 0.18);
}

.map-pin::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 9px;
	transform: translateX(-50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #6b58e8;
}

.map-pin::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 20px;
	transform: translateX(-50%);
	width: 6px;
	height: 12px;
	background: #6b58e8;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.map-user-chip,
.support-card,
.file-chip {
	display: grid;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	box-shadow: 0 8px 16px rgba(20, 24, 52, 0.14);
}

.map-user-chip {
	position: absolute;
	left: 18px;
	bottom: 16px;
	grid-template-columns: 32px 1fr;
	min-width: 154px;
	padding: 8px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.98);
}

.map-user-chip img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.map-user-chip strong {
	display: block;
	font-size: 13px;
	line-height: 14px;
	font-weight: 700;
	color: #1e2234;
}

.map-user-chip span {
	display: block;
	font-size: 11px;
	line-height: 13px;
	color: #6a6f80;
}

.feature-preview--chat {
	padding: 18px;
	background: #f8f8ff;
}

.support-card {
	grid-template-columns: 34px 1fr;
	max-width: 188px;
	padding: 8px 10px;
	border-radius: 12px;
	box-shadow: 0 10px 16px rgba(17, 20, 48, 0.12);
}

.support-card img {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
}

.support-card strong {
	display: block;
	font-size: 12px;
	line-height: 13px;
	color: #171a2e;
}

.support-card span {
	font-size: 11px;
	line-height: 11px;
	color: #20ac69;
}

.chat-bubble {
	margin-top: 12px;
	max-width: 200px;
	padding: 10px 12px;
	background: #6f54de;
	color: #ffffff;
	border-radius: 10px;
	font-size: 12px;
	line-height: 14px;
}

.file-chip {
	position: absolute;
	top: 48px;
	right: 14px;
	grid-template-columns: 26px 1fr;
	min-width: 106px;
	padding: 6px 8px;
	border-radius: 10px;
	box-shadow: 0 10px 18px rgba(17, 20, 48, 0.14);
}

.file-pill {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: #ff845f;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	line-height: 9px;
	font-weight: 700;
}

.file-chip strong {
	display: block;
	font-size: 11px;
	line-height: 12px;
	color: #171a2e;
	font-weight: 700;
}

.file-chip span {
	font-size: 10px;
	line-height: 10px;
	color: #777f95;
}

.feature-preview--toggle {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 16px;
	padding: 20px;
	background: #f8f8ff;
}

.toggle-chip-wrap {
	display: inline-flex;
	gap: 4px;
	padding: 4px;
	background: #e8e9f9;
	border-radius: 999px;
}

.toggle-chip {
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 12px;
	line-height: 12px;
	font-weight: 600;
	color: #4e5267;
}

.toggle-chip--active {
	background: #ffffff;
	color: #1e2238;
	box-shadow: 0 6px 12px rgba(21, 24, 44, 0.1);
}

.toggle-line {
	height: 10px;
	border-radius: 999px;
	background: #e4e6f4;
}

.toggle-line--long {
	width: 160px;
}

.toggle-line--medium {
	width: 130px;
}

.feature-preview--review {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #f8f8ff;
}

.review-user {
	position: relative;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	overflow: hidden;
}

.review-user img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-online {
	position: absolute;
	right: 2px;
	bottom: 2px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #35cb74;
	border: 2px solid #ffffff;
}

.feature-preview--review strong {
	font-size: 22px;
	line-height: 22px;
	font-weight: 500;
	color: #1c2030;
	font-family: "Outfit", sans-serif;
	letter-spacing: -2px;
}

/* =========================================
   TOPICS
========================================= */

.section-wrapper[data-interface="topics"] {
	padding: 127px 0 156px;
	background-color: #f5f5ff;
}

.section-wrapper[data-interface="topics"] .container-holder {
	grid-template-columns: 1fr;
	gap: 0;
}

.topic-title {
	margin-bottom: 50px;
	text-align: center;
	font-size: 58px;
	line-height: 58px;
	font-weight: 600;
	letter-spacing: -2px;
	color: #0f0f10;
}

.topic-title span {
	color: var(--accent);
}

.topics-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.topic-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 264px;
	padding: 28px 24px;
	text-align: center;
	background: #ffffff;
	border-radius: 16px;
	transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.topic-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 22px rgba(17, 18, 23, 0.06);
	background: #efedf8;
}

.topic-icon-wrap {
	display: grid;
	place-items: center;
	margin-bottom: 28px;
	border-radius: 10px;
	color: var(--accent);
}

.topic-icon-wrap svg {
	width: 70px;
	height: 70px;
}

.topic-card h3 {
	margin-bottom: 8px;
	font-size: 24px;
	line-height: 29px;
	font-weight: 600;
	letter-spacing: -1px;
	color: #0f0f10;
}

.topic-card p {
	max-width: 100%;
	margin: 0 auto;
	font-size: 18px;
	line-height: 28px;
	color: #5f5f5f;
}

.topic-content {
	max-width: 384px;
}
.topic-title {
	opacity: 0;
	transform: translateY(34px);
	filter: blur(6px);
	transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.topic-title.is-visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}
.topic-card {
	position: relative;
	overflow: hidden;
}

.topic-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: var(--accent);
	transform: translateX(-50%);
	transition: width 260ms ease;
	border-radius: 999px;
}

.topic-card:hover::before {
	width: 400px;
}
/* =========================================
   TOPICS ANIMATION
========================================= */

.topic-title,
.topic-card {
	opacity: 0;
	transform: translateY(34px);
	will-change: transform, opacity;
}

.topic-title.is-visible,
.topic-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.topic-title {
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.topic-card {
	transition:
		opacity 0.7s ease,
		transform 0.7s ease,
		box-shadow 220ms ease,
		background-color 220ms ease;
}

/* stagger delay */
.topic-card:nth-child(1) { transition-delay: 0.08s; }
.topic-card:nth-child(2) { transition-delay: 0.16s; }
.topic-card:nth-child(3) { transition-delay: 0.24s; }
.topic-card:nth-child(4) { transition-delay: 0.32s; }
.topic-card:nth-child(5) { transition-delay: 0.40s; }
.topic-card:nth-child(6) { transition-delay: 0.48s; }

/* hover polish */
.topic-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(17, 18, 23, 0.08);
	background: #efedf8;
}

.topic-icon-wrap svg {
	transition: transform 260ms ease, filter 260ms ease;
}

.topic-card:hover .topic-icon-wrap svg {
	transform: scale(1.07);
	filter: drop-shadow(0 8px 12px rgba(119, 82, 217, 0.18));
}

/* =========================================
   TESTIMONIALS
========================================= */

.section-wrapper[data-interface="testimonials"] {
	padding-bottom: 55px;
	margin-top: 180px;
	background-color: #f5f5ff;
}

.testimonials-wrap {
	height: 766px;
	margin: 0 auto;
	padding: 86px 0 86px;
	border-radius: 30px;
	overflow: hidden;
}

.testimonials-wrap h2 {
	margin-bottom: 58px;
	text-align: center;
	font-size: 54px;
	line-height: 58px;
	font-weight: 600;
	letter-spacing: 0%;
	color: var(--ink);
}

.testimonials-rows {
	overflow: hidden;
	/* position: relative; */
	padding-bottom: 14px;
}

.testimonials-rows::before,
.testimonials-rows::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 14px;
	width: 220px;
	z-index: 2;
	pointer-events: none;
}

.testimonials-rows::before {
	left: 0;
	background: linear-gradient(to right, #f5f5ff 0%, rgba(245, 245, 255, 0) 50%);
}

.testimonials-rows::after {
	right: 0;
	background: linear-gradient(to left, #f5f5ff 0%, rgba(245, 245, 255, 0) 50%);
}

.testimonials-row {
	display: flex;
	gap: 20px;
	width: max-content;
	padding: 0 26px;
	margin-bottom: 20px;
}

.testimonials-row--offset {
	transform: translateX(-90px);
	margin-bottom: 0;
}


.testimonial-card {
	width: 282px;
	min-height: 210px;
	display: flex;
	flex-direction: column;
	padding: 0 26px;
	background: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 14px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
}

.testimonial-stars {
	margin: 34px 0 10px;
	font-size: 12px;
	line-height: 12px;
	color: #7752d9;
	letter-spacing: 2px;
}

.testimonial-card p {
	margin-bottom: 43px;
	font-size: 16px;
	line-height: 24px;
	color: var(--ink);
	letter-spacing: 0%;
}

.testimonial-card span {
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 16px;
	color: #767780;
}

/* =========================================
   HOW IT WORKS
========================================= */

.section-wrapper[data-interface="how-it-works"] {
	padding-top: 180px;
}

.hiw-section {
	position: relative;
}

.hiw-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
}

.hiw-top h2 {
	font-size: 54px;
	line-height: 54px;
	font-weight: 600;
	letter-spacing: -2px;
	color: #0f0f10;
}

.hiw-toggle {
	display: inline-flex;
	flex-shrink: 0;
	gap: 8px;
	height: 54px;
	padding: 6px;
	border: 0;
	border-radius: 999px;
	background: #e2e2fd;
	width: 420px;
}

.hiw-toggle-btn {
	appearance: none;
	border: 0;
	background: transparent;
	color: #2a2a2a;
	padding: 12px 32px;
	border-radius: 999px;
	font-family: "Outfit", sans-serif;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 240ms ease, color 240ms ease;
	width: 200px;
}

.hiw-toggle-btn.is-active {
	background: #ffffff;
	color: #2a2a2a;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hiw-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.hiw-card {
	display: flex;
	flex-direction: column;
	gap: 46px;
	min-height: 450px;
	padding: 28px;
	background: #e2e2fd;
	border-radius: 20px;
	box-shadow: 0 10px 26px rgba(20, 19, 28, 0.04);
	transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 340ms cubic-bezier(0.22, 1, 0.36, 1), background-color 280ms ease;
	transform-style: preserve-3d;
	perspective: 900px;
	will-change: transform;
}

.hiw-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 30px rgba(20, 19, 28, 0.1);
}

.hiw-scene {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 280ms ease, transform 280ms ease;
}

.hiw-scene.want-scene {
	position: absolute;
	inset: 16px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px) scale(0.98);
}

.hiw-piece {
	will-change: transform;
	transform: translate3d(0, 0, 0);
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
}

.hiw-line {
	width: 100%;
	height: 18px;
	border-radius: 999px;
	background: #efefff;
}

.hiw-line.long {
	max-width: 230px;
}

.hiw-line.medium {
	max-width: 186px;
}

.hiw-line.short {
	max-width: 130px;
}

.hiw-line.tiny {
	max-width: 60px;
}

.hiw-cta {
	align-self: center;
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 60px;
	border-radius: 12px;
	background: #7654df;
	color: #ffffff;
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
	box-shadow: 0 10px 18px rgba(118, 84, 223, 0.2);
}

.hiw-cta.alt {
	background: #2f9f72;
	box-shadow: 0 10px 18px rgba(47, 159, 114, 0.2);
}

.hiw-chip-row {
	display: flex;
	gap: 8px;
	align-self: flex-start;
}

.hiw-chip {
	padding: 8px 12px;
	border-radius: 999px;
	background: #e2e4f2;
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
	color: #50546d;
}

.hiw-person-row {
	display: grid;
	grid-template-columns: 24px 1fr auto auto;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 260px;
	height: 70px;
	align-self: center;
	padding: 10px;
	background: #e7e8f3;
	border-radius: 12px;
}

.hiw-avatar {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: inline-block;
}

.hiw-avatar.second {
	background: linear-gradient(140deg, #d7c4cf, #8d6f7b);
}

.hiw-text {
	padding: 0 6px;
	font-size: 13px;
	line-height: 16px;
	font-weight: 500;
	color: #1f2131;
}

.hiw-pill {
	width: 64px;
	height: 24px;
	padding: 6px 14px;
	border-radius: 999px;
	background: #7654df;
	color: #ffffff;
	font-size: 11px;
	line-height: 11px;
	font-weight: 600;
}

.hiw-pill.alt {
	padding: 8px 12px;
	background: #2f9f72;
	font-size: 12px;
	line-height: 12px;
}

.hiw-chat {
	max-width: 220px;
	padding: 10px 12px;
	border-radius: 12px;
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
}

.hiw-chat.in {
	align-self: flex-start;
	background: #e7e8f3;
	color: #2e3146;
}

.hiw-chat.out {
	align-self: flex-end;
	background: #7654df;
	color: #ffffff;
}

.hiw-pill-row {
	align-self: center;
}

.hiw-check-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hiw-check-row.muted {
	opacity: 0.65;
}

.hiw-earn-card {
	width: 100%;
	max-width: 220px;
	align-self: center;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 8px;
	padding: 12px 14px;
	background: #7654df;
	color: #ffffff;
	border-radius: 14px;
	box-shadow: 0 12px 20px rgba(118, 84, 223, 0.24);
}

.hiw-earn-label {
	font-size: 11px;
	line-height: 13px;
	font-weight: 500;
	opacity: 0.85;
}

.hiw-earn-card strong {
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
}

.hiw-progress {
	width: 100%;
	max-width: 220px;
	height: 10px;
	align-self: center;
	overflow: hidden;
	background: #dfe1ef;
	border-radius: 999px;
}

.hiw-progress span {
	display: block;
	height: 100%;
	width: 72%;
	background: #2f9f72;
	border-radius: inherit;
}

.hiw-progress.short span {
	width: 48%;
}

.hiw-copy {
	min-height: 84px;
}

.hiw-copy h3 {
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	color: #0f0f10;
	text-align: center;
}

.hiw-copy .want-copy {
	display: none;
}

.hiw-section.mode-want .hiw-copy .need-copy {
	display: none;
}

.hiw-section.mode-want .hiw-copy .want-copy {
	display: inline;
}

.hiw-section.mode-want .need-scene {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px) scale(0.98);
}

.hiw-section.mode-want .want-scene {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.hiw-card:hover .hiw-piece {
	box-shadow: 0 6px 14px rgba(19, 18, 27, 0.06);
}

.hiw-piece[data-mx][data-my] {
	transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0);
}

@media (prefers-reduced-motion: reduce) {
	.hiw-card,
	.hiw-scene,
	.hiw-piece,
	.hiw-toggle-btn {
		transition: none !important;
	}
}

/* =========================================
   FOOTER
========================================= */

.section-wrapper[data-interface="site-footer"] {
	padding: 84px 0 46px;
	opacity: 1;
	transform: none;
	transition: none;
	background: var(--white);
	border-top: 1px solid rgba(15, 15, 16, 0.06);
}

.footer-shell {
	display: flex;
	flex-direction: column;
	gap: 88px;
}

.footer-main {
	display: grid;
	grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	gap: 180px;
	align-items: start;
}

.footer-logo {
	display: inline-flex;
	flex-direction: column;
	font-size: 40px;
	line-height: 44px;
	font-weight: 800;
	letter-spacing: -2px;
	color: var(--ink);
	text-decoration: none;
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(140px, 1fr));
	gap: 102px;
	align-items: start;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-column h3 {
	margin-bottom: 30px;
	font-size: 20px;
	line-height: 26px;
	font-weight: 700;
	letter-spacing: -1px;
	color: var(--ink);
}

.footer-column a {
	width: fit-content;
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	color: rgba(15, 15, 16, 0.62);
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
	color: var(--ink);
	transform: translateX(2px);
}

.footer-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 500px;
	padding-top: 8px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #5d5d61;
}

.footer-meta p {
	font-size: 16px;
	line-height: 22px;
}

.footer-meta a {
	font-size: 16px;
	line-height: 22px;
	color: var(--accent);
	text-decoration: none;
}

.footer-meta a:hover {
	text-decoration: underline;
}

.footer-title {
	margin-bottom: 20px;
}

.footer-title__text {
	display: inline-block;
	overflow: hidden;
	height: 21px;
	line-height: 21px;
}

.footer-title__track {
	display: flex;
	flex-direction: column;
	transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.footer-title__track span {
	display: block;
	height: 21px;
	font-size: 18px;
	line-height: 21px;
	font-weight: 700;
	letter-spacing: -1px;
	white-space: nowrap;
	color: #0f0f10;
}

.footer-column:hover .footer-title__track {
	transform: translateY(-21px);
}

/*Privacy Policy*/
/* =========================================
   PRIVACY HERO
========================================= */

.privacy-hero {
	padding: 74px 0 68px;
	background: linear-gradient(180deg, #f3f1fb 0%, #f7f6fc 100%);
}

.privacy-page .privacy-hero {
	padding-top: 142px;
}

.privacy-hero .container-holder {
	display: grid;
	grid-template-columns: minmax(0, 540px) minmax(0, 460px);
	align-items: center;
	justify-content: space-between;
	column-gap: 72px;
}

.privacy-hero__content {
	max-width: 560px;
}

.privacy-hero__title {
	margin: 0 0 22px;
	font-size: 62px;
	line-height: 1;
	letter-spacing: -2.6px;
	font-weight: 700;
	color: var(--ink);
}

.privacy-hero__text {
	max-width: 530px;
	margin: 0 0 34px;
	font-size: 21px;
	line-height: 1.7;
	color: var(--muted);
}

.privacy-hero__back-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 136px;
	height: 50px;
	padding: 0 26px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
	box-shadow: var(--shadow-button);
	color: var(--white);
	font-size: 15px;
	font-weight: 600;
	transition: transform 220ms ease, box-shadow 220ms ease;
	text-decoration: none;
}

.privacy-hero__back-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 28px rgba(111, 86, 220, 0.28);
}

.privacy-hero__visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.privacy-hero__illustration {
	position: relative;
	width: min(440px, 100%);
	aspect-ratio: 1.18;
	border-radius: 26px;
	background: #ece9f8;
	box-shadow: 0 20px 38px rgba(96, 78, 184, 0.15);
	display: grid;
	place-items: center;
	overflow: hidden;
	padding: 20px;
}

.privacy-hero__card {
	position: absolute;
	display: block;
	background: #f8f7fd;
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba(107, 88, 193, 0.14);
}

.privacy-hero__card--one {
	width: 120px;
	height: 82px;
	top: 28px;
	left: 24px;
}

.privacy-hero__card--two {
	width: 96px;
	height: 66px;
	right: 26px;
	top: 48px;
}

.privacy-hero__card--three {
	width: 150px;
	height: 92px;
	left: 36px;
	bottom: 24px;
}

.privacy-hero__shield-wrap {
	position: relative;
	width: 54%;
	min-width: 180px;
	aspect-ratio: 0.86;
	display: grid;
	place-items: center;
	background: radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0));
	border-radius: 22px;
	z-index: 2;
}

.privacy-hero__shield {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 16px 24px rgba(85, 62, 179, 0.3));
}

.privacy-hero__visual img {
	width: 100%;
	max-width: 430px;
	height: auto;
	object-fit: contain;
}

/* =========================================
   PRIVACY LAYOUT
========================================= */

.privacy-layout {
	padding: 34px 0 100px;
	background: var(--white);
	overflow: visible;
}

.privacy-layout__grid {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	column-gap: 48px;
	align-items: start;
}

.privacy-sidebar {
	position: static;
	padding: 26px;
	border-radius: 20px;
	background: var(--panel-soft);
}

.privacy-sidebar__title {
	margin: 0 0 18px;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--ink);
}

.privacy-sidebar__nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.privacy-sidebar__link {
	display: block;
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 16px;
	line-height: 1.45;
	color: #30303b;
	transition: all 220ms ease;
	text-decoration: none;
}

.privacy-sidebar__link:hover {
	background: rgba(119, 82, 217, 0.08);
	color: var(--accent);
	transform: translateX(2px);
}

.privacy-sidebar__link.is-active {
	background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
	color: var(--white);
	box-shadow: 0 10px 22px rgba(119, 82, 217, 0.18);
}

.privacy-content {
	padding-top: 4px;
}

.privacy-content__updated {
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.5;
	color: #71717d;
}

.privacy-content__section {
	padding-bottom: 38px;
}

.privacy-content__section h2 {
	margin: 0 0 18px;
	font-size: 50px;
	line-height: 1.18;
	letter-spacing: -1.4px;
	font-weight: 600;
	color: var(--ink);
	scroll-margin-top: 22px;
}

.privacy-content__section p {
	margin: 0 0 18px;
	font-size: 18px;
	line-height: 1.85;
	color: #575766;
	max-width: 860px;
}

.privacy-content__section ul {
	padding-left: 22px;
}

.privacy-content__section li {
	margin-bottom: 14px;
	font-size: 18px;
	line-height: 1.85;
	color: #575766;
	max-width: 860px;
}

.privacy-content__section li::marker {
	color: var(--accent);
}
