/* Hero Card */
.hero-card {
	background: #ffffff;
	color: #1e1e1e;
	border: 4px solid #1e1e1e;
	box-shadow: 12px 12px 0px #ff7043;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.hero-card:hover {
	transform: translate(-6px, -6px);
	box-shadow: 18px 18px 0px #7e57c2;
	border-color: #7e57c2;
}

.hero-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 10px,
		rgba(255,112,67,0.03) 10px,
		rgba(255,112,67,0.03) 20px
	);
	animation: slide 20s linear infinite;
}

@keyframes slide {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

/* Manifesto Cards */
.manifesto-card {
	background: #ffffff;
	border: 3px solid #1e1e1e;
	box-shadow: 8px 8px 0px #1e1e1e;
	transition: all 0.3s ease;
	position: relative;
	padding: 32px;
}

.manifesto-card:hover {
	transform: translate(-4px, -4px);
	box-shadow: 12px 12px 0px #ff7043;
	border-color: #ff7043;
}

.manifesto-card.purple:hover {
	box-shadow: 12px 12px 0px #7e57c2;
	border-color: #7e57c2;
}

.manifesto-number {
	font-family: 'Archivo Black', sans-serif;
	font-size: 72px;
	line-height: 1;
	color: #1e1e1e;
	opacity: 0.1;
	position: absolute;
	top: 16px;
	right: 24px;
}

/* Initiative Cards (Larger) */
.initiative-card {
	background: #ffffff;
	color: #1e1e1e;
	border: 4px solid #1e1e1e;
	box-shadow: 12px 12px 0px #1e1e1e;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.initiative-card:hover {
	transform: translate(-6px, -6px);
	box-shadow: 18px 18px 0px #ff7043;
	border-color: #ff7043;
}

.initiative-card.purple-hover:hover {
	box-shadow: 18px 18px 0px #7e57c2;
	border-color: #7e57c2;
}

.initiative-image {
	height: 320px;
	background: #1e1e1e;
	position: relative;
	overflow: hidden;
}

.initiative-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%) contrast(120%);
	transition: all 0.3s ease;
}

.initiative-card:hover .initiative-image img {
	filter: grayscale(0%) contrast(100%);
	transform: scale(1.05);
}

.initiative-tag {
	display: inline-block;
	padding: 8px 20px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 3px solid #1e1e1e;
	margin-right: 8px;
	margin-bottom: 8px;
	transition: all 0.2s ease;
}

.initiative-tag:hover {
	transform: rotate(-2deg) scale(1.05);
}

.initiative-tag.coral {
	background: #ff7043;
	color: #1e1e1e;
}

.initiative-tag.purple {
	background: #7e57c2;
	color: #ffffff;
}

.initiative-tag.green {
	background: #00ff88;
	color: #1e1e1e;
}

/* Status Badge */
.status-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 10px 20px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 3px solid #1e1e1e;
	background: #ffffff;
	z-index: 10;
}

.status-badge.active {
	background: #00ff88;
	color: #1e1e1e;
	animation: pulse 2s infinite;
}

.status-badge.growing {
	background: #ff7043;
	color: #1e1e1e;
}

.status-badge.planning {
	background: #7e57c2;
	color: #ffffff;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.8; }
}

/* CTA Button */
.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #ff7043;
	color: #1e1e1e;
	padding: 24px 48px;
	font-family: 'Archivo Black', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: 4px solid #1e1e1e;
	box-shadow: 8px 8px 0px #1e1e1e;
	transition: all 0.2s ease;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #7e57c2;
	transition: left 0.3s ease;
	z-index: -1;
}

.cta-button:hover::before {
	left: 0;
}

.cta-button:hover {
	color: #ffffff;
	transform: translate(-4px, -4px);
	box-shadow: 12px 12px 0px #7e57c2;
	border-color: #7e57c2;
}

.cta-arrow {
	transition: transform 0.2s ease;
}

.cta-button:hover .cta-arrow {
	transform: translateX(8px);
}

/* Stat Blocks */
.stat-block {
	background: #1e1e1e;
	border: 3px solid #ffffff;
	padding: 32px;
	text-align: center;
	transition: all 0.3s ease;
}

.stat-block:hover {
	background: #ffffff;
	color: #1e1e1e;
	transform: translate(-4px, -4px);
	box-shadow: 8px 8px 0px #ff7043;
}

.stat-number {
	font-family: 'Archivo Black', sans-serif;
	font-size: 48px;
	line-height: 1;
	margin-bottom: 8px;
	color: #ff7043;
}

.stat-block:hover .stat-number {
	color: #7e57c2;
}