/* ── PROJECTS SECTION ── */
.projects {
	background-color: #1a1f26;
	padding: 5rem 6%;
	border-top: 1px solid rgba(255,255,255,0.06);
}
.projects-header {
	margin-bottom: 3.5rem;
}
.projects-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1rem;
}
.projects-label::before {
	content: '';
	display: block;
	width: 28px;
	height: 2px;
	background: var(--accent);
	border-radius: 2px;
}
.projects-header h2 {
	font-family: 'Inter', sans-serif;
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	letter-spacing: -0.03em;
}
.projects-header h2 .accent-word {
	color: var(--accent);
}
.projects-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
}
.proj-item {
	padding: 2.8rem 3rem;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: background 0.2s;
}
.proj-item:first-child {
	border-right: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px 0 0 14px;
}
.proj-item:last-child {
	border-radius: 0 14px 14px 0;
}
.proj-item:hover {
	background: rgba(255,255,255,0.025);
}
.proj-item__type {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #d7c3a3;
	opacity: 0.65;
	margin-bottom: 1rem;
}
.proj-item__name {
	font-family: 'Bruno Ace SC', cursive;
	font-size: 1.7rem;
	font-weight: 400;
	color: #ffffff;
	letter-spacing: 0.02em;
	line-height: 1.1;
	margin-bottom: 0.5rem;
}
.proj-item__line {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.4);
	margin-bottom: 1.6rem;
	line-height: 1.5;
}
.proj-item__desc {
	font-size: 0.9rem;
	line-height: 1.8;
	color: rgba(255,255,255,0.45);
	margin-bottom: 2rem;
	flex: 1;
}
.proj-item__capabilities {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 2rem;
}
.proj-item__cap {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(255,255,255,0.3);
	border: 1px solid rgba(255,255,255,0.1);
	padding: 0.2rem 0.55rem;
	border-radius: 3px;
}
.proj-item__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,0.06);
	margin-top: auto;
}
.proj-item__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: #d7c3a3;
	text-decoration: none;
	transition: gap 0.2s;
}
.proj-item__link:hover { gap: 0.7rem; }
.proj-item__status {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.25);
}
.proj-item__status-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #6ee7b7;
	box-shadow: 0 0 5px #6ee7b7;
	animation: proj-pulse 2s ease infinite;
}
@keyframes proj-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}
@media (max-width: 960px) {
	.projects { padding: 4rem 6%; }
	.projects-grid { grid-template-columns: 1fr; }
	.proj-item:first-child {
		border-right: none;
		border-bottom: 1px solid rgba(255,255,255,0.08);
		border-radius: 14px 14px 0 0;
	}
	.proj-item:last-child {
		border-radius: 0 0 14px 14px;
	}
}
