/* ── Section ── */
.fa-section {
	position: relative;
	padding: 5rem 1.5rem;
	background: #050505;
	overflow: hidden;
	font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* Ambient glows */
.fa-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	pointer-events: none;
	z-index: 0;
}
.fa-glow-1 {
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(139,92,246,0.05), transparent 70%);
	top: -120px;
	left: -80px;
}
.fa-glow-2 {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(59,130,246,0.04), transparent 70%);
	bottom: -80px;
	right: -60px;
}

.fa-container {
	max-width: 64rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* ── Header ── */
.fa-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
.fa-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #c084fc;
	margin-bottom: 0.625rem;
}
.fa-title {
	margin: 0 0 0.375rem;
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	font-weight: 600;
	color: #ffffff;
	letter-spacing: -0.025em;
	line-height: 1.15;
}
.fa-desc {
	margin: 0;
	font-size: 0.9375rem;
	color: #a1a1aa;
	line-height: 1.5;
}
.fa-view-all {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 10px;
	background: rgba(255,255,255,0.02);
	color: #a1a1aa;
	font-size: 0.8125rem;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.25s;
	flex-shrink: 0;
}
.fa-view-all:hover {
	border-color: rgba(192,132,252,0.2);
	color: #d8b4fe;
	background: rgba(192,132,252,0.05);
}
.fa-view-all svg {
	transition: transform 0.2s;
}
.fa-view-all:hover svg {
	transform: translateX(2px);
}

/* ── Grid ── */
.fa-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

/* ── Card ── */
.fa-card {
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	opacity: 0;
	transform: translateY(20px);
}
.fa-card.visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--delay),
				transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--delay),
				background 0.3s ease,
				border-color 0.3s ease,
				box-shadow 0.35s ease;
}
.fa-card:hover {
	background: rgba(255,255,255,0.035);
	border-color: rgba(255,255,255,0.1);
	box-shadow: 0 12px 40px rgba(0,0,0,0.4);
	transform: translateY(-4px);
}
.fa-card.visible:hover {
	transition-delay: 0s;
}

/* ── Photo ── */
.fa-photo {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #0a0a0a;
}
.fa-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
	filter: brightness(0.8) saturate(0.85);
}
.fa-card:hover .fa-photo img {
	transform: scale(1.05);
	filter: brightness(0.9) saturate(0.95);
}

/* Photo overlay */
.fa-photo-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.1) 40%, transparent 100%);
	pointer-events: none;
	z-index: 1;
}

/* Verified badge */
.fa-verified {
	position: absolute;
	bottom: 0.75rem;
	left: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
	background: rgba(52,211,153,0.12);
	border: 1px solid rgba(52,211,153,0.2);
	color: #34d399;
	font-size: 0.625rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 2;
}

/* Listings badge */
.fa-listings-badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	padding: 0.2rem 0.5rem;
	border-radius: 5px;
	background: rgba(0,0,0,0.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.08);
	color: #a1a1aa;
	font-size: 0.625rem;
	font-weight: 500;
	z-index: 2;
}

/* ── Body ── */
.fa-body {
	padding: 1rem 1.125rem 1.125rem;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

/* Name */
.fa-name {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.01em;
}
.fa-name a {
	color: #e4e4e7;
	text-decoration: none;
	transition: color 0.2s;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.fa-card:hover .fa-name a {
	color: #ffffff;
}

/* Type */
.fa-type {
	display: inline-block;
	font-size: 0.6875rem;
	color: #a1a1aa;
	padding: 0.125rem 0.5rem;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.04);
	border-radius: 5px;
	width: fit-content;
}

/* Rating */
.fa-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.25rem;
}
.fa-stars {
	display: flex;
	align-items: center;
	gap: 1px;
}
.fa-star {
	display: block;
	flex-shrink: 0;
}
.fa-rating-text {
	font-size: 0.75rem;
	color: #52525b;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.fa-rating-text strong {
	color: #a1a1aa;
	font-weight: 600;
}
.fa-rating-sep {
	color: #27272a;
}

/* Stats */
.fa-stats {
	display: flex;
	align-items: center;
	padding: 0.625rem;
	background: rgba(255,255,255,0.015);
	border: 1px solid rgba(255,255,255,0.04);
	border-radius: 10px;
	margin-top: 0.25rem;
}
.fa-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.0625rem;
}
.fa-stat-val {
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.01em;
	line-height: 1.2;
}
.fa-stat-label {
	font-size: 0.5625rem;
	color: #52525b;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
}
.fa-stat-div {
	width: 1px;
	height: 1.5rem;
	background: rgba(255,255,255,0.05);
	flex-shrink: 0;
}

/* Bio */
.fa-bio {
	margin: 0;
	font-size: 0.8125rem;
	color: #52525b;
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* CTA */
.fa-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	padding: 0.625rem 1rem;
	border-radius: 10px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.07);
	color: #d4d4d8;
	font-size: 0.8125rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s;
	margin-top: 0.125rem;
}
.fa-cta:hover {
	background: rgba(192,132,252,0.08);
	border-color: rgba(192,132,252,0.18);
	color: #d8b4fe;
}
.fa-cta svg:first-child {
	color: #a1a1aa;
	transition: color 0.2s;
}
.fa-cta:hover svg:first-child {
	color: #c084fc;
}
.fa-cta svg:last-child {
	transition: transform 0.2s;
}
.fa-cta:hover svg:last-child {
	transform: translateX(2px);
}

/* ── Empty State ── */
.fa-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding: 4rem 2rem;
	text-align: center;
	color: #3f3f46;
}
.fa-empty-icon {
	width: 3.5rem;
	height: 3.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.04);
	margin-bottom: 0.5rem;
}
.fa-empty p {
	font-size: 0.9375rem;
	margin: 0;
}
.fa-empty-link {
	font-size: 0.8125rem;
	color: #c084fc;
	text-decoration: none;
	transition: color 0.2s;
}
.fa-empty-link:hover {
	color: #d8b4fe;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.fa-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.fa-section {
		padding: 3.5rem 1rem;
	}
	.fa-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		margin-bottom: 1.75rem;
	}
	.fa-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}
	.fa-photo {
		aspect-ratio: 1 / 1;
	}
	.fa-body {
		padding: 0.75rem;
	}
	.fa-name {
		font-size: 0.875rem;
	}
	.fa-stat-val {
		font-size: 0.9375rem;
	}
	.fa-bio {
		-webkit-line-clamp: 1;
		font-size: 0.75rem;
	}
	.fa-cta {
		padding: 0.5625rem 0.75rem;
		font-size: 0.75rem;
	}
	.fa-cta span {
		display: none;
	}
	.fa-cta svg:first-child {
		color: inherit;
	}
}

@media (max-width: 400px) {
	.fa-grid {
		grid-template-columns: 1fr;
		max-width: 20rem;
		margin-left: auto;
		margin-right: auto;
	}
	.fa-photo {
		aspect-ratio: 16 / 10;
	}
}
