/* Integrono landing - founder portrait + hero density (2026-07-31) */
:root {
	--ir-founder-cyan: #38bdf8;
}

/* Pull hero content up under the sticky header */
#top.hero-static {
	min-height: 0 !important;
	padding-bottom: 1.5rem !important;
}

#top.hero-static > .container {
	padding-top: 1rem !important;
	padding-bottom: 1.25rem !important;
}

@media screen and (min-width: 992px) {
	#top.hero-static > .container {
		padding-top: 1.15rem !important;
	}
}

@media screen and (max-width: 767px) {
	#top.hero-static > .container {
		padding-top: 0.85rem !important;
	}
}

/* Founder stack: free circular portrait + separate text panel (no circle-in-square card) */
.hero-founder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	align-self: start;
	width: 100%;
	max-width: 420px;
	margin-left: auto;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
	padding: 0 !important;
}

.hero-founder-card {
	/* legacy class safety if cached HTML still has it */
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.hero-founder-glow {
	display: none !important;
}

.hero-grid {
	align-items: start !important;
}

.hero-founder-photo-wrap {
	position: relative;
	z-index: 1;
	display: block;
	width: min(100%, 300px);
	margin: 0 auto !important;
	padding: 0 !important;
	overflow: visible !important;
	border-radius: 50% !important;
	aspect-ratio: 1 / 1;
	background: transparent;
	filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.4));
	animation: ir-founder-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-founder-photo-wrap::before {
	display: none;
}

.hero-founder-photo-wrap picture {
	display: block;
	width: 100%;
	height: 100%;
}

.hero-founder-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain !important;
	object-position: center center !important;
	background: transparent;
	border-radius: 0;
	transform: none;
	transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-founder:hover .hero-founder-photo {
	transform: scale(1.02);
	filter: drop-shadow(0 0 22px rgba(56, 189, 248, 0.28));
}

.hero-founder-body {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 1.05rem 1.2rem 1.2rem !important;
	border: 1px solid rgba(56, 189, 248, 0.2);
	border-radius: 22px;
	background:
		linear-gradient(165deg, rgba(13, 23, 40, 0.94) 0%, rgba(7, 13, 24, 0.92) 100%);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
	animation: ir-founder-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.hero-founder .hero-founder-eyebrow,
.hero-founder-card .hero-founder-eyebrow {
	color: var(--ir-founder-cyan) !important;
	-webkit-text-fill-color: var(--ir-founder-cyan) !important;
	letter-spacing: 0.16em !important;
	margin-bottom: 0.35rem !important;
}

.hero-founder .hero-founder-name,
.hero-founder-card .hero-founder-name {
	color: #f8fafc !important;
	-webkit-text-fill-color: #f8fafc !important;
	margin-bottom: 0.15rem !important;
}

.hero-founder .hero-founder-role,
.hero-founder-card .hero-founder-role {
	color: #7dd3fc !important;
	-webkit-text-fill-color: #7dd3fc !important;
	margin-bottom: 0.55rem !important;
}

.hero-founder-quote {
	margin-bottom: 0.65rem !important;
}

.hero-founder-points {
	margin-bottom: 0.65rem !important;
}

.hero-founder-metrics {
	margin-bottom: 0.75rem !important;
}

.hero-founder-metrics div {
	background: rgba(15, 23, 42, 0.55) !important;
	border: 1px solid rgba(56, 189, 248, 0.14) !important;
	border-radius: 14px !important;
	backdrop-filter: blur(8px);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.hero-founder-metrics div:hover {
	border-color: rgba(56, 189, 248, 0.32) !important;
	transform: translateY(-1px);
}

.hero-founder-cta {
	background: linear-gradient(135deg, #f97316 0%, #ea580c 58%, #fb923c 100%) !important;
	border-radius: 14px !important;
	letter-spacing: 0.06em !important;
}

@keyframes ir-founder-rise {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-founder-photo,
	.hero-founder-metrics div {
		transition: none;
	}

	.hero-founder:hover .hero-founder-photo {
		transform: none;
		filter: none;
	}

	.hero-founder-photo-wrap,
	.hero-founder-body {
		animation: none !important;
	}
}

@media screen and (max-width: 991px) {
	.hero-founder {
		max-width: 380px;
		margin: 0 auto;
	}

	.hero-founder-photo-wrap {
		width: min(100%, 260px);
	}
}

@media screen and (max-width: 575px) {
	.hero-founder-photo-wrap {
		width: min(100%, 220px);
	}

	.hero-founder-body {
		padding: 0.9rem 1rem 1.05rem !important;
	}
}


/* Case cards as article links on homepage */
a.case-card--link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
a.case-card--link:hover,
a.case-card--link:focus-visible {
	transform: translateY(-2px);
	outline: none;
}
a.case-card--link:hover h4,
a.case-card--link:focus-visible h4 {
	color: var(--ir-accent-blue, #1a7fbe);
}

/* Cases / blog index lists */
.ir-article-crumb {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
}
.ir-article-crumb a {
	color: var(--ir-accent-blue, #1a7fbe);
	text-decoration: none;
}
.ir-article-crumb a:hover {
	text-decoration: underline;
}
.ir-article-list {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}
.ir-article-list-item {
	display: block;
	padding: 1.15rem 1.25rem;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.ir-article-list-item:hover,
.ir-article-list-item:focus-visible {
	border-color: rgba(26, 127, 190, 0.35);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
	transform: translateY(-2px);
	outline: none;
}
.ir-article-list-tag {
	display: inline-block;
	margin-bottom: 0.45rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ir-accent-blue, #1a7fbe);
}
.ir-article-list-item h2 {
	margin: 0 0 0.45rem;
	font-size: 1.2rem;
	line-height: 1.3;
}
.ir-article-list-item p {
	margin: 0 0 0.65rem;
	color: var(--ir-muted, #64748b);
	line-height: 1.5;
}
.ir-article-list-more {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--ir-accent-blue, #1a7fbe);
}
