/* ==========================================================================
   Home — Manifesto + Logos clients
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section layout
   -------------------------------------------------------------------------- */

.home-manifesto {
	display: flex;
	flex-direction: column;
	padding: 96px 48px;
	background-color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Content block (title + paragraph)
   -------------------------------------------------------------------------- */

.home-manifesto__content {
	display: flex;
	flex-direction: column;
	gap: 64px;
	margin-bottom: 0;
	padding-bottom: 0;
}

.home-manifesto__title {
	font-family: var(--font-display), var(--font-body), sans-serif;
	font-weight: var(--font-weight-book);
	font-size: 56px;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-black);
	max-width: 1270px;
}

.home-manifesto__asterisk {
	display: inline-block;
	width: 50px;
	height: 51px;
	vertical-align: middle;
	margin-right: 8px;
	color: var(--color-primary);
}

.home-manifesto__asterisk svg {
	width: 100%;
	height: 100%;
}

.home-manifesto__paragraph {
	font-family: var(--font-body);
	font-weight: var(--font-weight-medium);
	font-size: var(--text-base);
	line-height: 1.6;
	color: var(--color-black);
	width: 431px;
	max-width: 100%;
	margin-left: 798px;
	text-indent: 48px;
}

/* --------------------------------------------------------------------------
   Logos band — auto-scroll infini (marquee CSS)
   -------------------------------------------------------------------------- */

.home-manifesto__logos {
	width: 100vw;
	position: relative;
	left: 50%;
	margin-left: -50vw;
	margin-top: 240px;
	overflow: hidden;
}

.home-manifesto__logos-track {
	display: flex;
	align-items: center;
	gap: 80px;
	width: max-content;
	animation: marquee-logos 40s linear infinite;
}

.home-manifesto__logo-item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-manifesto__logo-img {
	height: 56px;
	width: auto;
	display: block;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 200ms ease-out, opacity 200ms ease-out;
}

.home-manifesto__logo-item:hover .home-manifesto__logo-img {
	filter: grayscale(0%);
	opacity: 1;
}

.home-manifesto__logo-placeholder {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: var(--font-weight-medium);
	color: var(--color-gray-400);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0 40px;
}

@keyframes marquee-logos {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-33.333%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-manifesto__logos-track {
		animation: none;
	}
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.home-manifesto {
		padding: 64px 32px;
		gap: 64px;
	}

	.home-manifesto__title {
		font-size: 36px;
	}

	.home-manifesto__asterisk {
		width: 36px;
		height: 37px;
	}

	.home-manifesto__paragraph {
		width: 100%;
		margin-left: auto;
	}
}

@media (max-width: 768px) {
	.home-manifesto {
		padding: 48px 24px;
	}

	.home-manifesto__title {
		font-size: 28px;
	}

	.home-manifesto__asterisk {
		width: 28px;
		height: 29px;
	}

	.home-manifesto__paragraph {
		text-indent: 24px;
		margin-left: 0;
	}

	.home-manifesto__logo-img {
		height: 40px;
	}

	.home-manifesto__logos-track {
		gap: 48px;
	}
}
