/* Idea Zone homepage showcase — animated daily workflow loop */
.iz-showcase {
	position: relative;
	padding: 72px 0 64px;
	background: linear-gradient(165deg, #0a140a 0%, #0f1f10 38%, #081208 100%);
	overflow: hidden;
}

.iz-showcase::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 22%, rgba(0, 200, 5, 0.14) 0%, transparent 42%),
		radial-gradient(circle at 82% 78%, rgba(52, 152, 219, 0.08) 0%, transparent 40%);
	pointer-events: none;
}

.iz-showcase .container {
	position: relative;
	z-index: 1;
}

.iz-showcase__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	margin-bottom: 14px;
	border-radius: 999px;
	border: 1px solid rgba(0, 200, 5, 0.45);
	background: rgba(0, 200, 5, 0.08);
	color: #5dff72;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.iz-showcase__eyebrow .fa {
	font-size: 14px;
}

.iz-showcase__title {
	margin: 0 0 16px;
	color: #ffffff;
	font-family: Montserrat, Lato, sans-serif;
	font-size: clamp(1.75rem, 4vw, 2.45rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.iz-showcase__title em {
	font-style: normal;
	color: #00c805;
}

.iz-showcase__lead {
	margin: 0 0 22px;
	max-width: 34rem;
	color: #c8dcc9;
	font-size: 1.05rem;
	line-height: 1.65;
}

.iz-showcase__bullets {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.iz-showcase__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	color: #e8f5e9;
	font-size: 0.98rem;
	line-height: 1.5;
}

.iz-showcase__bullets .fa {
	flex-shrink: 0;
	margin-top: 3px;
	color: #00c805;
}

.iz-showcase__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 10px;
}

.iz-showcase__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.iz-showcase__btn--primary {
	background: #0d7a0f;
	color: #ffffff;
	box-shadow: 0 6px 22px rgba(13, 122, 15, 0.35);
}

.iz-showcase__btn--primary:hover {
	transform: translateY(-2px);
	color: #ffffff;
	box-shadow: 0 10px 28px rgba(13, 122, 15, 0.45);
}

.iz-showcase__btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #ffffff;
	background: rgba(255, 255, 255, 0.04);
}

.iz-showcase__btn--ghost:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.iz-showcase__fine {
	margin: 14px 0 0;
	max-width: 34rem;
	color: #8aa88c;
	font-size: 0.82rem;
	line-height: 1.5;
}

/* Animated workflow panel */
.iz-flow-panel {
	position: relative;
	margin: 0 auto;
	max-width: 420px;
	padding: 22px 18px 18px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(0, 0, 0, 0.35) 100%);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.iz-flow-panel__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.iz-flow-panel__dots {
	display: flex;
	gap: 6px;
}

.iz-flow-panel__dots span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
}

.iz-flow-panel__dots span:first-child {
	background: #ff5f57;
}

.iz-flow-panel__dots span:nth-child(2) {
	background: #febc2e;
}

.iz-flow-panel__dots span:nth-child(3) {
	background: #28c840;
}

.iz-flow-panel__label {
	color: #9cb89e;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.iz-flow-panel__live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #5dff72;
	font-size: 11px;
	font-weight: 700;
}

.iz-flow-panel__live::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #00c805;
	animation: iz-live-pulse 1.4s ease-in-out infinite;
}

@keyframes iz-live-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.45; transform: scale(0.85); }
}

.iz-flow {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	max-height: 320px;
}

.iz-flow__hub {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	margin: -46px 0 0 -46px;
	border-radius: 50%;
	border: 2px solid rgba(0, 200, 5, 0.55);
	background: radial-gradient(circle at 35% 30%, #1a3d1c 0%, #0a160b 70%);
	box-shadow: 0 0 30px rgba(0, 200, 5, 0.25);
	animation: iz-hub-glow 4s ease-in-out infinite;
}

@keyframes iz-hub-glow {
	0%, 100% { box-shadow: 0 0 24px rgba(0, 200, 5, 0.2); }
	50% { box-shadow: 0 0 42px rgba(0, 200, 5, 0.45); }
}

.iz-flow__hub-icon {
	color: #00c805;
	font-size: 22px;
}

.iz-flow__hub-text {
	margin-top: 4px;
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.iz-flow__ring {
	position: absolute;
	inset: 12%;
	border-radius: 50%;
	border: 1px dashed rgba(0, 200, 5, 0.22);
}

.iz-flow__ring--spin {
	animation: iz-ring-spin 28s linear infinite;
}

@keyframes iz-ring-spin {
	to { transform: rotate(360deg); }
}

.iz-flow__sweep {
	position: absolute;
	inset: 8%;
	border-radius: 50%;
	background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 200, 5, 0.35) 24deg, transparent 48deg);
	animation: iz-ring-spin 6s linear infinite;
	pointer-events: none;
}

.iz-flow__node {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 58px;
	margin: -29px 0 0 -29px;
	transform: rotate(var(--iz-angle)) translateY(calc(-1 * var(--iz-radius))) rotate(calc(-1 * var(--iz-angle)));
	text-align: center;
}

.iz-flow__node-dot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(8, 18, 10, 0.92);
	color: #8aa88c;
	font-size: 14px;
	animation: iz-node-pulse 16s ease-in-out infinite;
	animation-delay: var(--iz-delay);
}

.iz-flow__node-label {
	margin-top: 4px;
	color: #9cb89e;
	font-size: 9px;
	font-weight: 600;
	line-height: 1.2;
	max-width: 56px;
	animation: iz-label-pulse 16s ease-in-out infinite;
	animation-delay: var(--iz-delay);
}

@keyframes iz-node-pulse {
	0%, 6%, 100% {
		border-color: rgba(255, 255, 255, 0.14);
		background: rgba(8, 18, 10, 0.92);
		color: #8aa88c;
		box-shadow: none;
		transform: scale(1);
	}
	3% {
		border-color: rgba(0, 200, 5, 0.75);
		background: rgba(0, 200, 5, 0.18);
		color: #ffffff;
		box-shadow: 0 0 18px rgba(0, 200, 5, 0.45);
		transform: scale(1.12);
	}
}

@keyframes iz-label-pulse {
	0%, 6%, 100% { color: #9cb89e; }
	3% { color: #ffffff; }
}

.iz-flow__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-top: 16px;
}

.iz-flow__step {
	position: relative;
	padding: 10px 6px 8px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.25);
	text-align: center;
	animation: iz-step-highlight 8s ease-in-out infinite;
	animation-delay: var(--step-delay);
}

.iz-flow__step-num {
	display: block;
	margin-bottom: 4px;
	color: #5dff72;
	font-size: 10px;
	font-weight: 800;
}

.iz-flow__step-text {
	display: block;
	color: #d8ead9;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.25;
}

@keyframes iz-step-highlight {
	0%, 20%, 100% {
		border-color: rgba(255, 255, 255, 0.08);
		background: rgba(0, 0, 0, 0.25);
	}
	5%, 15% {
		border-color: rgba(0, 200, 5, 0.55);
		background: rgba(0, 200, 5, 0.12);
	}
}

.iz-flow__loop {
	margin-top: 12px;
	text-align: center;
	color: #7a9a7c;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.iz-flow__loop .fa {
	margin-right: 4px;
	color: #00c805;
	animation: spin 3s linear infinite;
}

/* Tool grid */
.iz-showcase__tools-head {
	margin: 48px 0 18px;
	text-align: center;
	color: #ffffff;
	font-family: Montserrat, Lato, sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
}

.iz-showcase__tools-sub {
	margin: -8px auto 22px;
	max-width: 640px;
	text-align: center;
	color: #9cb89e;
	font-size: 0.92rem;
	line-height: 1.5;
}

.iz-showcase__tools {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.iz-showcase__tool {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 16px 14px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	text-decoration: none;
	transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.iz-showcase__tool:hover {
	border-color: rgba(0, 200, 5, 0.45);
	background: rgba(0, 200, 5, 0.08);
	transform: translateY(-3px);
	text-decoration: none;
}

.iz-showcase__tool-top {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.iz-showcase__tool-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(0, 200, 5, 0.12);
	color: #00c805;
	font-size: 16px;
}

.iz-showcase__tool-name {
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.25;
}

.iz-showcase__tool-desc {
	margin: 0;
	color: #a8c4aa;
	font-size: 0.82rem;
	line-height: 1.45;
}

.iz-showcase__tool-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.iz-showcase__tool-badge--free {
	background: rgba(0, 200, 5, 0.15);
	color: #5dff72;
}

.iz-showcase__tool-badge--plat {
	background: rgba(155, 89, 182, 0.2);
	color: #d7b8ff;
}

.iz-showcase__disclaimer {
	margin: 28px auto 0;
	max-width: 780px;
	text-align: center;
	color: #6d856f;
	font-size: 0.78rem;
	line-height: 1.55;
}

@media (max-width: 991px) {
	.iz-showcase {
		padding: 56px 0 48px;
	}

	.iz-flow-panel {
		margin-top: 32px;
	}

	.iz-showcase__tools {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.iz-showcase__tools {
		grid-template-columns: 1fr;
	}

	.iz-flow__steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.iz-flow__node-label {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.iz-flow-panel__live::before,
	.iz-flow__hub,
	.iz-flow__ring--spin,
	.iz-flow__sweep,
	.iz-flow__node-dot,
	.iz-flow__node-label,
	.iz-flow__step,
	.iz-flow__loop .fa {
		animation: none !important;
	}
}
