@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
	--climatn-bg: #f8fafc;
	--climatn-card: #ffffff;
	--climatn-text: #0f172a;
	--climatn-muted: #64748b;
	--climatn-blue: #2563eb;
	--climatn-blue-deep: #1e40af;
	--climatn-green: #16a34a;
	--climatn-border: #e6eef6;
	--climatn-border-strong: #cfdceb;
	--climatn-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
	--climatn-shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.04);
	--climatn-radius: 18px;
	--climatn-radius-lg: 26px;
	--climatn-shell: 1120px;
	--climatn-gap: 24px;
	--climatn-transition: 220ms cubic-bezier(.22, 1, .36, 1);
}

html,
body {
	height: 100%;
}

.climatn-page {
	position: relative;
	background: var(--climatn-bg);
	color: var(--climatn-text);
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.45;
	overflow-x: clip;
}

.climatn-page,
.climatn-page * {
	box-sizing: border-box;
}

.climatn-page a {
	color: inherit;
	text-decoration: none;
}

.climatn-shell {
	width: min(100% - 40px, var(--climatn-shell));
	margin: 0 auto;
}

.climatn-page::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(226, 232, 240, 0.22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(226, 232, 240, 0.22) 1px, transparent 1px);
	background-size: 88px 88px;
	opacity: 0.2;
}

.climatn-hero {
	position: relative;
	padding: 88px 0 64px;
}

.climatn-hero__backdrop {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}

.climatn-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(226, 232, 240, 0.16) 1px, transparent 1px),
		linear-gradient(90deg, rgba(226, 232, 240, 0.16) 1px, transparent 1px);
	background-size: 96px 96px;
	opacity: 0.3;
}

.climatn-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(28px);
	opacity: 0.28;
}

.climatn-hero__glow--blue {
	width: 420px;
	height: 420px;
	right: -80px;
	top: 36px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 58%);
}

.climatn-hero__glow--green {
	width: 360px;
	height: 360px;
	left: -60px;
	bottom: 20px;
	background: radial-gradient(circle, rgba(22, 163, 74, 0.12), transparent 60%);
}

.climatn-hero__silhouette {
	position: absolute;
	right: 4%;
	top: 8%;
	width: min(48%, 560px);
	height: min(40vw, 420px);
	background:
		radial-gradient(circle at 30% 35%, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0) 40%),
		radial-gradient(circle at 68% 62%, rgba(22, 163, 74, 0.1), rgba(22, 163, 74, 0) 38%),
		linear-gradient(130deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.008));
	clip-path: polygon(8% 62%, 18% 44%, 24% 31%, 38% 26%, 46% 18%, 58% 22%, 67% 14%, 79% 20%, 86% 31%, 92% 44%, 96% 58%, 90% 73%, 77% 82%, 68% 90%, 49% 86%, 37% 92%, 25% 86%, 16% 75%);
	opacity: 0.36;
	filter: blur(6px);
}

.climatn-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: 36px;
	align-items: center;
}

.climatn-hero__content {
	max-width: 720px;
}

.climatn-hero__visual {
	display: grid;
	gap: 16px;
	align-content: center;
	justify-items: end;
}

.climatn-hero__notice {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border: 1px solid rgba(37, 99, 235, 0.16);
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.06);
	color: var(--climatn-blue-deep);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 14px;
}

.climatn-hero__eyebrow,
.climatn-section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--climatn-muted);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.climatn-hero__eyebrow::before,
.climatn-section__eyebrow::before {
	content: '';
	width: 32px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}

.climatn-hero__headline {
	margin: 16px 0 16px;
	max-width: 12ch;
	font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
	font-size: clamp(3rem, 6vw, 4.8rem);
	line-height: 0.96;
	letter-spacing: -0.06em;
}

.climatn-hero__summary {
	max-width: 58ch;
	margin: 0;
	color: var(--climatn-muted);
	font-size: 1.08rem;
	line-height: 1.65;
}

.climatn-hero__proofs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.climatn-hero__proof {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border: 1px solid var(--climatn-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--climatn-shadow-soft);
	color: var(--climatn-text);
	font-size: 0.85rem;
	font-weight: 700;
}

.climatn-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 24px;
}

.climatn-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.96rem;
	font-weight: 700;
	transition: transform var(--climatn-transition), box-shadow var(--climatn-transition), border-color var(--climatn-transition), background-color var(--climatn-transition), color var(--climatn-transition);
	will-change: transform;
}

.climatn-button:hover {
	transform: translateY(-2px);
}

.climatn-button--primary {
	background: linear-gradient(90deg, var(--climatn-blue), var(--climatn-blue-deep));
	color: #fff;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.14);
}

.climatn-button--secondary {
	border-color: var(--climatn-border);
	background: rgba(255, 255, 255, 0.9);
	color: var(--climatn-text);
	box-shadow: var(--climatn-shadow-soft);
}

.climatn-button:focus-visible {
	outline: 3px solid rgba(37, 99, 235, 0.18);
	outline-offset: 4px;
}

.climatn-hero__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 36px;
}

.climatn-hero__metric,
.climatn-statcard,
.climatn-featurecard,
.climatn-insightcard,
.climatn-cta {
	border: 1px solid var(--climatn-border);
	border-radius: var(--climatn-radius-lg);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: var(--climatn-shadow-soft);
}

.climatn-hero__metric {
	padding: 20px 22px;
}

.climatn-hero__metriclabel,
.climatn-hero__cardsubtext,
.climatn-hero__metricsubtext,
.climatn-statcard__label,
.climatn-insightcard__panelmetriclabel,
.climatn-footer__sociallabel {
	display: block;
	color: var(--climatn-muted);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.climatn-hero__metricvalue {
	display: block;
	margin-top: 10px;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -0.04em;
}

.climatn-hero__card {
	width: min(100%, 320px);
	padding: 22px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(10px);
}

.climatn-hero__panel {
	width: min(100%, 320px);
	padding: 24px;
	border-radius: 22px;
	border: 1px solid rgba(37, 99, 235, 0.14);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);


}

.climatn-hero__paneleyebrow {
	display: inline-flex;
	margin-bottom: 10px;
	color: var(--climatn-blue);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.climatn-hero__paneltitle {
	display: block;
	font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
	font-size: 1.36rem;
	line-height: 1.12;
	letter-spacing: -0.04em;
}

.climatn-hero__paneltext {
	margin: 12px 0 0;
	color: var(--climatn-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

.climatn-hero__card--top {
	justify-self: start;
}

.climatn-hero__card--bottom {
	justify-self: end;
}

.climatn-hero__cardvalue {
	display: block;
	margin: 8px 0 6px;
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.climatn-section {
	padding: 42px 0 12px;
}

.climatn-section__heading {
	display: grid;
	gap: 12px;
	margin-bottom: 26px;
}

.climatn-section__title {
	margin: 0;
	max-width: 18ch;
	font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
	font-size: clamp(2.1rem, 3.4vw, 3.5rem);
	line-height: 1.02;
	letter-spacing: -0.055em;
}

.climatn-statgrid,
.climatn-frameworkgrid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.climatn-statcard,
.climatn-featurecard {
	padding: 28px;
	transition: transform var(--climatn-transition), box-shadow var(--climatn-transition), border-color var(--climatn-transition);
}

.climatn-statcard:hover,
.climatn-featurecard:hover,
.climatn-insightcard:hover,
.climatn-cta:hover {
	transform: translateY(-4px);
	border-color: rgba(37, 99, 235, 0.18);
	box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}

.climatn-statcard__value {
	display: block;
	margin: 12px 0 8px;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.05em;
}

.climatn-statcard__text,
.climatn-featurecard__text,
.climatn-insightcard__text,
.climatn-aboutgrid__text,
.climatn-footer__copyright {
	margin: 0;
	color: var(--climatn-muted);
}

.climatn-featurecard {
	min-height: 240px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9));
}

.climatn-featurecard__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border: 1px solid rgba(37, 99, 235, 0.18);
	border-radius: 14px;
	background: rgba(37, 99, 235, 0.05);
	color: var(--climatn-blue);
	font-weight: 800;
}

.climatn-featurecard__title,
.climatn-insightcard__title,
.climatn-cta__title {
	margin: 0 0 12px;
	font-family: 'IBM Plex Sans', Inter, system-ui, sans-serif;
	letter-spacing: -0.04em;
}

.climatn-featurecard__title {
	font-size: 1.35rem;
}

.climatn-strip {
	overflow: hidden;
	margin: 40px 0 22px;
	border-top: 1px solid var(--climatn-border);
	border-bottom: 1px solid var(--climatn-border);
	background: linear-gradient(90deg, rgba(37, 99, 235, 0.04), rgba(22, 163, 74, 0.04));
}

.climatn-strip__track {
	display: flex;
	width: max-content;
	will-change: transform;
}

.climatn-strip__group {
	display: flex;
	gap: 48px;
	padding: 18px 0;
}

.climatn-strip__item {
	color: var(--climatn-text);
	font-family: Manrope, Inter, system-ui, sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.climatn-section--insight {
	padding-top: 22px;
}

.climatn-insightcard {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 22px;
	padding: 28px;
}

.climatn-insightcard__content {
	display: grid;
	align-content: start;
	gap: 10px;
}

.climatn-insightcard__title {
	font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.climatn-insightcard__panel {
	position: relative;
	min-height: 280px;
	overflow: hidden;
	border-radius: calc(var(--climatn-radius-lg) - 8px);
	background:
		radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 36%),
		radial-gradient(circle at bottom right, rgba(22, 163, 74, 0.18), transparent 36%),
		linear-gradient(160deg, #0f172a, #172554);
}

.climatn-insightcard__panelgrid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 34px 34px;
	opacity: 0.45;
}

.climatn-insightcard__panelmetric {
	position: absolute;
	left: 24px;
	bottom: 24px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.48);
	color: #fff;
	backdrop-filter: blur(12px);
}

.climatn-insightcard__panelmetriclabel {
	color: rgba(255, 255, 255, 0.68);
}

.climatn-insightcard__panelmetricvalue {
	display: block;
	margin-top: 6px;
	font-size: 2.4rem;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.climatn-section--cta {
	padding-top: 26px;
}

.climatn-cta {
	padding: 44px 30px;
	text-align: center;
	background:
		radial-gradient(circle at top, rgba(37, 99, 235, 0.08), transparent 36%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
}

.climatn-cta__title {
	margin-left: auto;
	margin-right: auto;
	max-width: 16ch;
	font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.climatn-cta__button {
	margin-top: 10px;
}

.climatn-section--about {
	padding-top: 30px;
	padding-bottom: 22px;
}

.climatn-aboutgrid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.8fr;
	gap: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--climatn-border);
}

.climatn-aboutgrid__brand,
.climatn-aboutgrid__nav,
.climatn-aboutgrid__social {
	display: grid;
	align-content: start;
	gap: 14px;
}

.climatn-aboutgrid__text {
	max-width: 34ch;
}

.climatn-footer {
	padding: 18px 0 36px;
}

.climatn-footer__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 20px;
	padding-top: 22px;
	border-top: 1px solid var(--climatn-border);
}

.climatn-footer__brand,
.climatn-footer__sociallinks {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.climatn-footer__links {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px;
}

.climatn-footer__meta {
	display: grid;
	justify-items: end;
	gap: 8px;
}

.climatn-footer__copyright {
	font-size: 0.92rem;
}

.climatn-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 700ms ease, transform 700ms ease;
}

.climatn-reveal--visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes climatn-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.climatn-strip__track,
	.climatn-reveal,
	.climatn-reveal--visible {
		animation: none;
		transition: none;
	}

	.climatn-button,
	.climatn-statcard,
	.climatn-featurecard,
	.climatn-insightcard,
	.climatn-cta,
	.climatn-hero__card {
		transition: none;
	}
}

@media (max-width: 1080px) {
	.climatn-hero__inner {
		grid-template-columns: 1fr;
	}

	.climatn-hero__content {
		max-width: 100%;
	}

	.climatn-hero__visual {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-items: stretch;
	}

	.climatn-hero__panel,
	.climatn-hero__card {
		width: 100%;
	}

	.climatn-hero__card--bottom {
		justify-self: stretch;
	}

	.climatn-statgrid,
	.climatn-frameworkgrid,
	.climatn-aboutgrid {
		grid-template-columns: 1fr;
	}

	.climatn-insightcard {
		grid-template-columns: 1fr;
	}

	.climatn-footer__inner {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.climatn-footer__meta {
		justify-items: start;
	}
}

@media (max-width: 820px) {
	.climatn-hero {
		padding-top: 58px;
	}

	.climatn-hero__headline {
		max-width: 100%;
	}

	.climatn-hero__summary {
		font-size: 1rem;
	}

	.climatn-hero__metrics {
		grid-template-columns: 1fr;
	}

	.climatn-hero__visual {
		display: none;
	}

	.climatn-hero__glow--blue {
		right: -110px;
	}

	.climatn-hero__glow--green {
		left: -120px;
	}
}

@media (max-width: 560px) {
	.climatn-shell {
		width: min(100% - 20px, var(--climatn-shell));
	}

	.climatn-hero {
		padding-top: 40px;
		padding-bottom: 46px;
	}

	.climatn-hero__notice {
		font-size: 0.78rem;
		padding: 9px 12px;
	}

	.climatn-hero__headline {
		font-size: clamp(2.5rem, 12vw, 3.2rem);
	}

	.climatn-hero__proof {
		width: 100%;
		justify-content: center;
	}

	.climatn-button {
		width: 100%;
	}

	.climatn-hero__actions {
		flex-direction: column;
	}

	.climatn-statcard,
	.climatn-featurecard,
	.climatn-insightcard,
	.climatn-cta {
		padding: 22px;
	}

	.climatn-strip__group {
		gap: 28px;
	}
}
