/**
 * About Us route — `/about-us`
 * ---------------------------------------------------------------------------
 * Scroll reveals, eyebrow / pill components, client logo marquee, timeline.
 * Marquee motion: global `@keyframes marquee` in `base/animations.css`.
 */

/* --- Scroll reveal (IntersectionObserver toggles `.visible`) ------------ */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay-1 {
	transition-delay: 0.1s;
}
.reveal-delay-2 {
	transition-delay: 0.2s;
}
.reveal-delay-3 {
	transition-delay: 0.3s;
}
.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* --- Short orange rule under section titles ------------------------------ */
.accent-line::before {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	background: var(--orange);
	margin-bottom: 20px;
	border-radius: 2px;
}

/* --- Uppercase kicker line above headings ------------------------------- */
.eyebrow {
	font-size: 11px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--orange);
	font-weight: 600;
	margin-bottom: 12px;
	display: block;
}

/* --- Small capsule “badge” treatment ------------------------------------ */
.brand-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	border: 1px solid rgba(247, 147, 30, 0.4);
	border-radius: 100px;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	background: rgba(247, 147, 30, 0.07);
	font-weight: 600;
}
.brand-pill::before {
	content: '◆';
	font-size: 7px;
}

/* --- Film grain overlay on hero bands ----------------------------------- */
.noise-overlay::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
}

/* --- Client logo strip (uses global `marquee` keyframes) ---------------- */
.marquee-track {
	display: flex;
	gap: 24px;
	animation: marquee 30s linear infinite;
}
.marquee-track:hover {
	animation-play-state: paused;
}

/* --- Timeline node pulse (about story only) ---------------------------- */
@keyframes ripple {
	0% {
		box-shadow: 0 0 0 0 rgba(247, 147, 30, 0.45);
	}
	100% {
		box-shadow: 0 0 0 12px rgba(247, 147, 30, 0);
	}
}
.timeline-dot-pulse {
	animation: ripple 2.2s ease-out infinite;
}

/* --- Thin divider between stacked sections ------------------------------ */
.section-border {
	border-top: 1px solid rgba(247, 147, 30, 0.1);
}
