@font-face {
	font-family: "Space Grotesk";
	src: url("../fonts/space-grotesk-400.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Space Grotesk";
	src: url("../fonts/space-grotesk-500.ttf") format("truetype");
	font-style: normal;
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Space Grotesk";
	src: url("../fonts/space-grotesk-700.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: "Source Sans 3";
	src: url("../fonts/source-sans-3-400.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Source Sans 3";
	src: url("../fonts/source-sans-3-600.ttf") format("truetype");
	font-style: normal;
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: "Source Sans 3";
	src: url("../fonts/source-sans-3-700.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

:root {
	--cec-ink: #f1f5f9;
	--cec-navy: #0B132B;
	--cec-slate: #94a3b8;
	--cec-sand: #1e293b;
	--cec-sand-strong: #0f172a;
	--cec-paper: #020617;
	--cec-white: #ffffff;
	--cec-accent: #FFC000;
	--cec-accent-soft: #ffd75c;
	--cec-mint: #10A5A0;
	--cec-mint-soft: #63d4d0;
	--cec-cyan: #5B9BD5;
	--cec-border: rgba(255, 255, 255, 0.12);
	--cec-shadow: 0 22px 54px rgba(0, 0, 0, 0.4);
	--cec-shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.25);
	--cec-radius-lg: 28px;
	--cec-radius-md: 20px;
	--cec-radius-sm: 14px;
	--cec-max: 1180px;
	--cec-gutter: 24px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Source Sans 3", sans-serif;
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--cec-ink);
	background:
		radial-gradient(circle at top left, rgba(16, 165, 160, 0.12), transparent 30%),
		radial-gradient(circle at bottom right, rgba(91, 155, 213, 0.1), transparent 30%),
		linear-gradient(180deg, var(--cec-navy) 0%, var(--cec-paper) 100%);
}

.site-shell {
	position: relative;
	overflow: clip;
}

.site-shell::before,
.site-shell::after {
	position: absolute;
	content: "";
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	filter: blur(18px);
}

.site-shell::before {
	top: 11rem;
	right: -18rem;
	width: 42rem;
	height: 42rem;
	background: radial-gradient(circle, rgba(16, 165, 160, 0.16), transparent 72%);
}

.site-shell::after {
	top: 58rem;
	left: -20rem;
	width: 38rem;
	height: 38rem;
	background: radial-gradient(circle, rgba(91, 155, 213, 0.14), transparent 74%);
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.15em;
}

a:hover,
a:focus-visible {
	color: var(--cec-navy);
}

button,
input,
textarea,
select {
	font: inherit;
}

::selection {
	background: var(--cec-accent);
	color: var(--cec-white);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.container {
	width: min(calc(100% - (2 * var(--cec-gutter))), var(--cec-max));
	margin: 0 auto;
}

.site-main {
	display: block;
	position: relative;
	z-index: 1;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 20px 0;
	background: transparent;
	transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(11, 19, 43, 0.75);
	backdrop-filter: blur(14px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 22px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background:
		linear-gradient(135deg, rgba(8, 18, 36, 0.92), rgba(13, 91, 97, 0.6)),
		url("../images/brand/cloudenerchain-gradient.png") center / cover no-repeat;
	backdrop-filter: blur(12px);
}

.site-brand {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	color: var(--cec-ink);
	text-decoration: none;
}

.site-brand__badge {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cec-mint);
}

.site-brand__logo {
	width: clamp(166px, 18vw, 224px);
	height: auto;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 1;
	justify-content: flex-end;
}

.site-nav__menu {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
	margin-right: auto;
}

.site-nav__menu a {
	font-size: 0.98rem;
	font-weight: 600;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.82);
}

.site-nav__menu .current-menu-item > a,
.site-nav__menu a:hover,
.site-nav__menu a:focus-visible {
	color: var(--cec-mint);
}

.site-nav__tools {
	display: flex;
	align-items: center;
	gap: 14px;
}

.site-nav-toggle {
	display: none;
	align-items: center;
	gap: 12px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--cec-ink);
}

.site-nav-toggle__label {
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-nav-toggle__icon,
.site-nav-toggle__icon::before,
.site-nav-toggle__icon::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav-toggle__icon {
	position: relative;
}

.site-nav-toggle__icon::before,
.site-nav-toggle__icon::after {
	position: absolute;
	content: "";
	left: 0;
}

.site-nav-toggle__icon::before {
	top: -6px;
}

.site-nav-toggle__icon::after {
	top: 6px;
}

.site-header.nav-open .site-nav-toggle__icon {
	background: transparent;
}

.site-header.nav-open .site-nav-toggle__icon::before {
	top: 0;
	transform: rotate(45deg);
}

.site-header.nav-open .site-nav-toggle__icon::after {
	top: 0;
	transform: rotate(-45deg);
}

.button,
.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	font-size: 0.96rem;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(135deg, var(--cec-accent) 0%, #ffc040 100%);
	color: #0b132b;
	box-shadow: 0 16px 28px rgba(245, 158, 11, 0.3);
	transition: transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 250ms cubic-bezier(0.2, 0.8, 0.2, 1), background 250ms ease;
}

.button:hover,
.button:focus-visible,
.wp-element-button:hover,
.wp-element-button:focus-visible {
	color: #000;
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 20px 40px rgba(245, 158, 11, 0.45), 0 0 20px rgba(245, 158, 11, 0.3);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.08);
	color: var(--cec-white);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 12px 24px rgba(0, 0, 0, 0.1);
}

.button--small {
	min-height: 42px;
	padding: 0 20px;
	font-size: 0.9rem;
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px;
	border-radius: 999px;
	background: rgba(17, 33, 44, 0.08);
}

.language-switcher__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.74);
}

.language-switcher__link.is-current {
	background: var(--cec-white);
	color: var(--cec-navy);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.eyebrow {
	margin: 0 0 16px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cec-mint);
}

@keyframes hero-pulse {
	0%, 100% {
		transform: scale(1) translate(0, 0);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.1) translate(-10px, 10px);
		opacity: 1;
	}
}

@keyframes hero-pulse-alt {
	0%, 100% {
		transform: scale(1) translate(0, 0);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.15) translate(15px, -15px);
		opacity: 1;
	}
}

@keyframes pictogram-float {
	0%, 100% {
		transform: translate3d(var(--icon-shift-x), var(--icon-shift-y), 0);
	}
	50% {
		transform: translate3d(var(--icon-shift-x), calc(var(--icon-shift-y) - 3px), 0);
	}
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 56px 0 84px;
}

.hero::before,
.hero::after {
	position: absolute;
	content: "";
	border-radius: 50%;
	pointer-events: none;
}

.hero::before {
	right: -160px;
	top: -160px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(42, 181, 155, 0.3), transparent 68%);
	animation: hero-pulse 8s ease-in-out infinite;
}

.hero::after {
	left: -140px;
	bottom: -180px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(242, 139, 34, 0.25), transparent 70%);
	animation: hero-pulse-alt 10s ease-in-out infinite;
}

.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 42px;
	align-items: stretch;
	padding: 54px;
	border-radius: calc(var(--cec-radius-lg) + 8px);
	background:
		linear-gradient(125deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 19, 43, 0.93) 60%, rgba(2, 6, 23, 0.96) 100%),
		url("../images/brand/cloudenerchain-gradient.png") center / cover no-repeat;
	box-shadow: var(--cec-shadow);
	color: var(--cec-white);
}

.hero__grid::before {
	position: absolute;
	inset: 0;
	content: "";
	border-radius: inherit;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 58px 58px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.hero__content,
.hero__panel {
	position: relative;
	z-index: 1;
}

.hero h1 {
	margin: 0;
	max-width: 12ch;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(2.7rem, 5vw, 4.8rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.hero__lead {
	max-width: 40rem;
	margin: 24px 0 0;
	font-size: clamp(1.08rem, 2vw, 1.32rem);
	color: rgba(255, 255, 255, 0.84);
}

.hero__support {
	max-width: 36rem;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.72);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	margin-top: 28px;
	font-size: 0.94rem;
	color: rgba(255, 255, 255, 0.72);
}

.hero__meta span {
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
}

.hero__panel {
	display: grid;
	align-content: start;
	gap: 18px;
}

.hero-figure,
.figure-panel {
	margin: 0;
	border-radius: calc(var(--cec-radius-lg) - 4px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--cec-shadow-soft);
}

.hero-figure {
	overflow: hidden;
}

.hero-figure img,
.figure-panel img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.hero-figure figcaption {
	padding: 16px 20px 20px;
	font-size: 0.94rem;
	color: rgba(255, 255, 255, 0.72);
}

.hero-panel-card {
	padding: 24px;
	border-radius: var(--cec-radius-md);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 250ms ease;
}

.hero-panel-card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.1);
}

.hero-panel-card--accent {
	background: linear-gradient(160deg, rgba(245, 158, 11, 0.92), rgba(252, 211, 77, 0.88));
	color: #0b132b;
}

.hero-panel-card__label {
	margin: 0 0 10px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hero-panel-card__text {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.16rem;
	line-height: 1.35;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.stat-card {
	padding: 22px;
	border-radius: var(--cec-radius-md);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 250ms ease;
}

.stat-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.2);
}

.stat-card__value {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.stat-card__label {
	margin: 10px 0 0;
	font-size: 0.94rem;
	color: rgba(255, 255, 255, 0.74);
}

.section {
	position: relative;
	overflow: hidden;
	padding: 84px 0;
}

.section > .container {
	position: relative;
	z-index: 1;
}

.section--light {
	background: rgba(255, 255, 255, 0.03);
}

.section--light::before,
.section--sand::before {
	position: absolute;
	content: "";
	width: min(32rem, 42vw);
	aspect-ratio: 1;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(10px);
	z-index: 0;
}

.section--light::before {
	left: -12rem;
	bottom: -14rem;
	background: radial-gradient(circle, rgba(16, 165, 160, 0.16), transparent 72%);
}

.section--sand {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(2, 6, 23, 0.6));
}

.section--sand::before {
	top: -12rem;
	right: -10rem;
	background: radial-gradient(circle, rgba(91, 155, 213, 0.16), transparent 72%);
}

.section--dark {
	background:
		radial-gradient(circle at 0 0, rgba(16, 185, 129, 0.12), transparent 28%),
		linear-gradient(155deg, #0f172a 0%, #020617 100%);
	color: var(--cec-white);
}

.section-heading {
	max-width: 48rem;
	margin-bottom: 34px;
}

.section-heading h2 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.02;
	letter-spacing: -0.05em;
}

.section-heading p:last-child {
	margin-bottom: 0;
	color: var(--cec-slate);
}

.section-heading--inverse p:last-child,
.section-heading--inverse h2 {
	color: var(--cec-white);
}

.card-grid {
	display: grid;
	gap: 22px;
}

.card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card,
.post-card,
.partner-card,
.contact-card,
.legal-card,
.work-package {
	padding: 28px;
	border-radius: var(--cec-radius-lg);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--cec-border);
	box-shadow: var(--cec-shadow-soft);
	transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 300ms ease;
}

.interactive-panel {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	--panel-accent: rgba(42, 181, 155, 0.18);
	--panel-icon-bg: rgba(42, 181, 155, 0.12);
	--panel-icon-ink: var(--cec-mint);
	--pointer-x: 50%;
	--pointer-y: 50%;
	--icon-shift-x: 0px;
	--icon-shift-y: 0px;
}

.interactive-panel::before {
	position: absolute;
	inset: 0;
	content: "";
	background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), var(--panel-accent), transparent 46%);
	opacity: 0;
	transition: opacity 250ms ease;
	pointer-events: none;
	z-index: 0;
}

.interactive-panel:hover::before,
.interactive-panel:focus-within::before {
	opacity: 1;
}

.interactive-panel > * {
	position: relative;
	z-index: 1;
}

.interactive-panel[data-tone="sky"] {
	--panel-accent: rgba(96, 165, 250, 0.18);
	--panel-icon-bg: rgba(96, 165, 250, 0.16);
	--panel-icon-ink: #7dc2ff;
}

.interactive-panel[data-tone="amber"] {
	--panel-accent: rgba(242, 139, 34, 0.2);
	--panel-icon-bg: rgba(242, 139, 34, 0.16);
	--panel-icon-ink: #ffb05c;
}

.interactive-panel[data-tone="mint"] {
	--panel-accent: rgba(42, 181, 155, 0.18);
	--panel-icon-bg: rgba(42, 181, 155, 0.14);
	--panel-icon-ink: #4dd8bb;
}

.interactive-panel[data-tone="rose"] {
	--panel-accent: rgba(244, 114, 182, 0.18);
	--panel-icon-bg: rgba(244, 114, 182, 0.14);
	--panel-icon-ink: #ff8fc8;
}

.content-card:hover,
.post-card:hover,
.partner-card:hover,
.contact-card:hover,
.legal-card:hover,
.work-package:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
	border-color: rgba(16, 185, 129, 0.4);
}

.content-card h2,
.content-card h3,
.post-card h3,
.partner-card h2,
.contact-card h2,
.legal-card h2,
.work-package h2 {
	margin-top: 0;
	margin-bottom: 14px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.42rem;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.content-card p:last-child,
.post-card p:last-child,
.partner-card p:last-child,
.contact-card p:last-child,
.legal-card p:last-child {
	margin-bottom: 0;
}

.panel-pictogram {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin-bottom: 18px;
	border-radius: 22px;
	background: linear-gradient(145deg, var(--panel-icon-bg), rgba(255, 255, 255, 0.04));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
	color: var(--panel-icon-ink);
	animation: pictogram-float 5.4s ease-in-out infinite;
}

.panel-pictogram__halo {
	position: absolute;
	inset: -12px;
	border-radius: 28px;
	background: radial-gradient(circle, var(--panel-accent), transparent 70%);
	opacity: 0.7;
	transform: scale(0.84);
	transition: transform 280ms ease, opacity 280ms ease;
}

.panel-pictogram img {
	position: relative;
	z-index: 1;
	width: 34px;
	height: 34px;
	transition: transform 260ms ease;
}

.interactive-panel:hover .panel-pictogram__halo,
.interactive-panel:focus-within .panel-pictogram__halo {
	transform: scale(1);
	opacity: 0.95;
}

.interactive-panel:hover .panel-pictogram img,
.interactive-panel:focus-within .panel-pictogram img {
	transform: scale(1.06);
}

.content-card--dark {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.1);
	color: var(--cec-white);
}

.content-card--dark p {
	color: rgba(255, 255, 255, 0.76);
}

.content-card--outlined {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.content-card--compact {
	padding: 24px;
}

.split-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 34px;
	align-items: start;
}

.split-grid--figure {
	align-items: center;
}

.figure-panel {
	padding: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-list {
	display: grid;
	gap: 18px;
}

.timeline-list--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-item {
	position: relative;
	padding: 22px 22px 22px 28px;
	border-left: 4px solid var(--cec-mint);
	border-radius: 0 var(--cec-radius-md) var(--cec-radius-md) 0;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: var(--cec-shadow-soft);
	transition: transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 250ms ease;
}

.timeline-item:hover {
	transform: translateX(6px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-item__label {
	margin: 0 0 8px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cec-accent);
}

.timeline-item h3 {
	margin: 0 0 10px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.26rem;
	letter-spacing: -0.04em;
}

.timeline-item p:last-child {
	margin-bottom: 0;
}

.timeline-list--dark .timeline-item,
.timeline-item--dark {
	background: rgba(255, 255, 255, 0.08);
	border-left-color: var(--cec-accent);
	box-shadow: none;
}

.timeline-item--dark h3,
.timeline-item--dark p {
	color: var(--cec-white);
}

.page-hero {
	padding: 72px 0 48px;
}

.page-hero--image {
	position: relative;
	overflow: hidden;
	padding: 120px 0 72px;
	background-color: #07121d;
	background-position: center;
	background-size: cover;
}

.page-hero--image::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(135deg, rgba(7, 18, 29, 0.74) 0%, rgba(7, 18, 29, 0.36) 46%, rgba(7, 18, 29, 0.78) 100%),
		radial-gradient(circle at top right, rgba(16, 165, 160, 0.22), transparent 34%),
		radial-gradient(circle at bottom left, rgba(255, 192, 0, 0.12), transparent 28%);
}

.page-hero--image::after {
	position: absolute;
	inset: 0;
	content: "";
	background: url("../images/brand/cloudenerchain-gradient-flip.png") center / cover no-repeat;
	mix-blend-mode: screen;
	opacity: 0.08;
}

.page-hero--image .page-hero__inner {
	position: relative;
	z-index: 1;
	padding: 34px 36px;
	border-radius: 30px;
	background: linear-gradient(180deg, rgba(7, 18, 29, 0.64), rgba(7, 18, 29, 0.44));
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--cec-shadow);
}

.page-hero--image h1,
.page-hero--image p {
	color: var(--cec-white);
}

.page-hero--image p:last-child {
	color: rgba(255, 255, 255, 0.8);
}

.page-hero--grid {
	background-image: url("../images/backgrounds/cc0-grid-fog.jpg");
}

.page-hero--cloud {
	background-image: url("../images/backgrounds/cc0-server-room.jpg");
}

.page-hero--wind {
	background-image: url("../images/backgrounds/cc0-wind-dusk.jpg");
}

.page-hero--partners {
	background-image: url("../images/backgrounds/cc0-partners-meeting.jpg");
}

.page-hero--news {
	background-image: url("../images/backgrounds/cc0-news-auditorium.jpg");
}

.page-hero--article {
	padding-bottom: 36px;
}

.page-hero__inner {
	padding: 36px 0 0;
	max-width: 52rem;
}

.page-hero h1 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 1;
	letter-spacing: -0.05em;
}

.page-hero p:last-child {
	max-width: 42rem;
	color: var(--cec-slate);
}

.work-package-list {
	display: grid;
	gap: 22px;
}

.work-package {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.work-package__header,
.contact-grid,
.legal-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.work-package__header {
	align-items: start;
	margin-bottom: 16px;
}

.work-package__id,
.partner-card__type,
.contact-card__label {
	display: inline-block;
	margin: 0 0 16px;
	padding: 6px 14px;
	border-radius: 20px;
	background: var(--cec-mint-light);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cec-mint);
}

.work-package__lead,
.partner-card__focus {
	margin: 0;
	font-weight: 700;
	color: var(--cec-white);
}

.partner-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.partner-card__header h2 {
	margin: 0;
	flex: 1 1 auto;
}

.partner-card__logo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 82px;
	max-width: 118px;
	padding: 8px 12px;
	border-radius: 16px;
	background: #ffffff;
	box-shadow:
		inset 0 0 0 1px rgba(11, 19, 43, 0.06),
		0 12px 24px rgba(9, 19, 29, 0.14);
}

.partner-card__logo {
	display: block;
	max-width: 94px;
	max-height: 34px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.work-package__summary {
	margin: 0 0 18px;
	font-size: 1.08rem;
}

.work-package__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
}

.feature-list,
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.feature-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
}

.feature-list li:last-child {
	margin-bottom: 0;
}

.feature-list li::before {
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	content: "";
	border-radius: 50%;
	background: var(--cec-accent);
}

.partner-card,
.contact-card,
.legal-card {
	height: 100%;
}

.brand-ribbon {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
	gap: 28px;
	align-items: center;
	margin-bottom: 28px;
	padding: 30px;
	border-radius: var(--cec-radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background:
		linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
		url("../images/brand/cloudenerchain-gradient.png") center / cover no-repeat;
	box-shadow: var(--cec-shadow-soft);
}

.brand-ribbon__intro {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.brand-ribbon__mark {
	display: inline-grid;
	place-items: center;
	width: 84px;
	height: 84px;
	padding: 14px;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.brand-ribbon__mark img {
	width: 100%;
	height: auto;
}

.brand-ribbon__copy {
	min-width: 0;
}

.brand-ribbon__copy .eyebrow {
	margin-bottom: 12px;
}

.brand-ribbon__copy h2 {
	margin: 0 0 12px;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.55rem, 3vw, 2.2rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.brand-ribbon__copy p:last-child {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
}

.brand-ribbon__logos {
	padding: 26px;
	border-radius: calc(var(--cec-radius-lg) - 4px);
	background: #ffffff;
	box-shadow:
		inset 0 0 0 1px rgba(11, 19, 43, 0.06),
		0 16px 30px rgba(9, 19, 29, 0.12);
}

.brand-ribbon__logos img {
	width: 100%;
	height: auto;
	display: block;
}

.science-overview__heading {
	max-width: 54rem;
	margin: 0 auto 34px;
	text-align: center;
}

.science-overview__frame {
	padding: 28px;
	background: linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(7, 18, 29, 0.94));
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.science-overview__image {
	display: block;
	width: min(100%, 1120px);
	margin: 0 auto;
}

.science-overview__image--inline {
	filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.28));
}

.science-overview__image--inline svg {
	display: block;
	width: 100%;
	height: auto;
}

.science-overview__frame img {
	border-radius: calc(var(--cec-radius-lg) - 6px);
}

.science-overview__frame svg {
	border-radius: calc(var(--cec-radius-lg) - 6px);
}

.science-overview__caption {
	max-width: 64rem;
	margin: 18px auto 0;
	font-size: 0.98rem;
	line-height: 1.55;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
}

.science-overview__cards {
	margin-top: 28px;
}

.contact-card--accent {
	background: linear-gradient(160deg, rgba(18, 59, 89, 0.96), rgba(17, 33, 44, 0.96));
	color: var(--cec-white);
}

.contact-card--accent .contact-card__label,
.contact-card--accent .feature-list li::before {
	color: var(--cec-accent-soft);
	background: var(--cec-accent);
}

.contact-card--accent .feature-list li {
	color: rgba(255, 255, 255, 0.82);
}

.legal-grid,
.contact-grid {
	align-items: stretch;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.post-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}

.post-card__media {
	position: relative;
	display: block;
	margin: -28px -28px 0;
	overflow: hidden;
	border-radius: calc(var(--cec-radius-lg) - 2px) calc(var(--cec-radius-lg) - 2px) 22px 22px;
	background:
		radial-gradient(circle at top right, rgba(42, 181, 155, 0.22), transparent 34%),
		linear-gradient(145deg, rgba(18, 59, 89, 0.88), rgba(9, 19, 29, 0.98));
	min-height: 210px;
}

.post-card__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(9, 19, 29, 0) 42%, rgba(9, 19, 29, 0.48) 100%);
	pointer-events: none;
}

.post-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 320ms ease;
}

.post-card__media--fallback {
	display: flex;
	align-items: flex-end;
	padding: 24px;
}

.post-card__media-fallback-copy {
	max-width: 14ch;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.4rem;
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: var(--cec-white);
}

.post-card__badge {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: rgba(252, 250, 247, 0.92);
	box-shadow: 0 16px 30px rgba(9, 19, 29, 0.22);
	color: var(--cec-navy);
}

.post-card__badge img {
	width: 28px;
	height: 28px;
	transition: transform 260ms ease;
}

.post-card:hover .post-card__image,
.post-card:focus-within .post-card__image {
	transform: scale(1.04);
}

.post-card:hover .post-card__badge img,
.post-card:focus-within .post-card__badge img {
	transform: scale(1.08);
}

.post-card__meta {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cec-slate);
}

.post-card__title {
	margin: 0;
}

.post-card__title a {
	text-decoration: none;
}

.post-card__excerpt {
	flex: 1;
}

.section-actions {
	margin-top: 28px;
}

.text-link {
	font-weight: 700;
	color: var(--cec-accent-soft);
	text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
	color: var(--cec-accent);
}

.rich-text > :first-child,
.article-content > :first-child {
	margin-top: 0;
}

.rich-text > :last-child,
.article-content > :last-child {
	margin-bottom: 0;
}

.article-shell {
	max-width: 860px;
}

.article-content {
	padding: 34px;
	border-radius: var(--cec-radius-lg);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--cec-shadow-soft);
}

.article-content h2,
.article-content h3,
.article-content h4 {
	font-family: "Space Grotesk", sans-serif;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.article-figure {
	margin: 0 0 28px;
}

.article-figure__image {
	width: 100%;
	border-radius: var(--cec-radius-md);
	box-shadow: var(--cec-shadow-soft);
}

.article-figure__caption {
	margin-top: 12px;
	font-size: 0.94rem;
	color: var(--cec-slate);
}

.article-content ul,
.article-content ol {
	padding-left: 22px;
}

.article-content blockquote {
	margin: 28px 0;
	padding: 18px 22px;
	border-left: 4px solid var(--cec-accent);
	background: rgba(255, 255, 255, 0.08);
	border-radius: 0 var(--cec-radius-sm) var(--cec-radius-sm) 0;
}

.pagination-wrap {
	margin-top: 26px;
}

@keyframes news-timeline-pulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		box-shadow: 0 0 0 0 rgba(21, 214, 206, 0.34);
	}

	50% {
		transform: translate(-50%, -50%) scale(1.12);
		box-shadow: 0 0 0 14px rgba(21, 214, 206, 0);
	}
}

@keyframes news-timeline-flow {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 220px 0;
	}
}

.news-timeline-section {
	padding-top: 78px;
}

.news-timeline {
	padding: 34px;
	border-radius: var(--cec-radius-xl);
	background:
		radial-gradient(circle at top left, rgba(21, 214, 206, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(8, 15, 37, 0.98) 0%, rgba(10, 18, 34, 0.98) 100%);
	border: 1px solid rgba(11, 19, 43, 0.08);
	box-shadow: var(--cec-shadow-soft);
}

.news-timeline__viewport {
	overflow-x: auto;
	overflow-y: visible;
	padding-bottom: 24px;
	scrollbar-color: rgba(21, 214, 206, 0.48) rgba(8, 15, 37, 0.24);
	scrollbar-width: thin;
}

.news-timeline__canvas {
	position: relative;
	min-width: 100%;
	border-radius: calc(var(--cec-radius-xl) - 10px);
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(180deg, rgba(10, 18, 34, 0.92) 0%, rgba(6, 12, 28, 0.96) 100%);
	background-size: 100% 100px, 100px 100%, 100% 100%;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-timeline__track {
	position: absolute;
	left: 84px;
	right: 84px;
	height: 4px;
	border-radius: 999px;
	background:
		linear-gradient(90deg, rgba(21, 214, 206, 0.92), rgba(255, 195, 42, 0.92), rgba(21, 214, 206, 0.92));
	background-size: 220px 100%;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.06),
		0 0 26px rgba(21, 214, 206, 0.18);
	animation: news-timeline-flow 11s linear infinite;
}

.news-timeline__marker {
	position: absolute;
	top: 0;
	transform: translateX(-50%);
}

.news-timeline__marker-line {
	position: absolute;
	left: 50%;
	bottom: 28px;
	width: 1px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
	transform: translateX(-50%);
}

.news-timeline__marker-label {
	position: absolute;
	top: 26px;
	left: 50%;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(20, 30, 53, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.7);
	transform: translateX(-50%);
}

.news-timeline__event {
	position: absolute;
	top: 0;
	width: 0;
	transform: translateX(-50%);
}

.news-timeline__point {
	position: absolute;
	left: 50%;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--cec-mint);
	border: 3px solid rgba(8, 15, 37, 0.98);
	box-shadow: 0 0 0 6px rgba(21, 214, 206, 0.12);
	transform: translate(-50%, -50%);
	animation: news-timeline-pulse 3.2s ease-in-out infinite;
}

.news-timeline__stem {
	position: absolute;
	left: 50%;
	width: 2px;
	background: linear-gradient(180deg, rgba(21, 214, 206, 0.85), rgba(255, 195, 42, 0.55));
	transform: translateX(-50%);
}

.news-timeline__card {
	position: absolute;
	left: 50%;
	display: grid;
	gap: 14px;
	width: 270px;
	padding: 18px;
	border-radius: var(--cec-radius-md);
	background: linear-gradient(180deg, rgba(22, 32, 58, 0.98) 0%, rgba(16, 24, 44, 0.98) 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: 0 18px 30px rgba(6, 12, 28, 0.34);
	transform: translateX(calc(-50% + var(--news-card-shift, 0px)));
}

.news-timeline__image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 16px;
}

.news-timeline__date,
.news-timeline__excerpt,
.news-timeline__title {
	margin: 0;
}

.news-timeline__date {
	font-size: 0.83rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cec-mint);
}

.news-timeline__title {
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.2rem;
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.news-timeline__title a {
	text-decoration: none;
}

.news-timeline__excerpt {
	color: rgba(255, 255, 255, 0.78);
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.news-timeline__card .text-link {
	margin-top: auto;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--cec-border);
	text-decoration: none;
}

.nav-links .current {
	background: var(--cec-mint);
	color: var(--cec-navy);
}

.site-footer {
	padding: 72px 0 32px;
	background:
		linear-gradient(180deg, rgba(17, 33, 44, 0.96) 0%, rgba(13, 24, 33, 0.98) 100%),
		url("../images/brand/cloudenerchain-gradient-flip.png") center / cover no-repeat;
	color: var(--cec-white);
}

.site-footer__funding {
	display: grid;
	grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	margin-bottom: 34px;
	padding: 26px 30px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--cec-radius-lg);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.site-footer__funding-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	border-radius: var(--cec-radius-md);
	background: #ffffff;
	box-shadow:
		inset 0 0 0 1px rgba(11, 19, 43, 0.06),
		0 16px 30px rgba(9, 19, 29, 0.12);
}

.site-footer__funding-logo img {
	width: 100%;
	height: auto;
	display: block;
}

.site-footer__funding-copy {
	display: grid;
	gap: 10px;
}

.site-footer__funding-text,
.site-footer__funding-code {
	margin: 0;
}

.site-footer__funding-text {
	color: rgba(255, 255, 255, 0.84);
}

.site-footer__funding-code {
	font-weight: 700;
	color: var(--cec-accent-soft);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.8fr;
	gap: 30px;
	padding-bottom: 28px;
}

.site-footer__brand-lockup {
	display: grid;
	gap: 14px;
	margin-bottom: 10px;
}

.site-footer__brand-logo {
	width: min(100%, 260px);
	height: auto;
}

.site-footer__eyebrow {
	margin: 0 0 12px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.58);
}

.site-footer__title {
	margin: 0 0 16px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.4rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.site-footer__text,
.site-footer__contact {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, 0.76);
}

.footer-menu li {
	margin-bottom: 10px;
}

.footer-menu a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.82);
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
	color: var(--cec-accent-soft);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px 20px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.85);
}

.infrastructure-section {
	background:
		linear-gradient(180deg, rgba(18, 59, 89, 0.04) 0%, rgba(42, 181, 155, 0.08) 100%);
}

.infrastructure-stage {
	margin: 0 0 30px;
	overflow: hidden;
	border-radius: var(--cec-radius-lg);
	box-shadow: var(--cec-shadow);
	background: #08141b;
}

.infrastructure-stage img {
	width: 100%;
	aspect-ratio: 1440 / 448;
	object-fit: cover;
}

.infrastructure-stage__caption {
	display: grid;
	gap: 10px;
	padding: 24px 26px 28px;
	background: linear-gradient(180deg, rgba(8, 20, 27, 0.1) 0%, rgba(8, 20, 27, 0.88) 100%);
	color: var(--cec-white);
}

.infrastructure-stage__caption h3 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	letter-spacing: -0.04em;
}

.infrastructure-stage__caption p {
	margin: 0;
	max-width: 52rem;
	color: rgba(255, 255, 255, 0.82);
}

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

.infrastructure-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--cec-radius-md);
	background: rgba(255, 255, 255, 0.04);
	box-shadow: var(--cec-shadow-soft);
}

.infrastructure-card__media {
	margin: 0;
	overflow: hidden;
}

.infrastructure-card__media img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 280ms ease;
}

.infrastructure-card:hover .infrastructure-card__media img,
.infrastructure-card:focus-within .infrastructure-card__media img {
	transform: scale(1.04);
}

.infrastructure-card__body {
	display: grid;
	gap: 12px;
	padding: 22px 22px 24px;
}

.infrastructure-card__eyebrow {
	margin: 0;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cec-mint);
}

.infrastructure-card__title {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.25rem;
	letter-spacing: -0.03em;
}

.infrastructure-card__text,
.infrastructure-card__context {
	margin: 0;
	color: var(--cec-slate);
}

.infrastructure-card__context {
	padding-top: 12px;
	border-top: 1px solid var(--cec-border);
	font-weight: 600;
	color: var(--cec-ink);
}

.infrastructure-source {
	margin: 24px 0 0;
	font-size: 0.94rem;
	color: var(--cec-slate);
}

.infrastructure-source a {
	margin-left: 0.35em;
	font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
	.panel-pictogram,
	.panel-pictogram img {
		animation: none;
	}

	.news-timeline__track,
	.news-timeline__point {
		animation: none;
	}

	.interactive-panel::before,
	.post-card__image,
	.post-card__badge img,
	.panel-pictogram__halo,
	.panel-pictogram img {
		transition: none;
	}
}

@media (max-width: 1080px) {
	.hero__grid,
	.split-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.card-grid--four,
	.card-grid--three,
	.post-grid,
	.contact-grid,
	.legal-grid,
	.infrastructure-grid,
	.work-package__grid,
	.timeline-list--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__funding {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		max-width: none;
	}

	.brand-ribbon {
		grid-template-columns: 1fr;
	}

	.news-timeline {
		padding: 28px;
	}
}

@media (max-width: 820px) {
	.site-header__inner {
		padding: 14px 18px;
		border-radius: 28px;
	}

	.site-nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		left: var(--cec-gutter);
		right: var(--cec-gutter);
		top: calc(100% + 10px);
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 18px;
		border-radius: var(--cec-radius-md);
		background: rgba(11, 19, 43, 0.96);
		box-shadow: var(--cec-shadow);
	}

	.site-header.nav-open .site-nav {
		display: flex;
	}

	.site-nav__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		margin-right: 0;
	}

	.site-nav__tools {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.hero {
		padding-top: 28px;
	}

	.hero__grid {
		padding: 34px 24px;
	}

	.infrastructure-stage__caption {
		padding: 22px 22px 24px;
	}

	.section,
	.site-footer {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.page-hero {
		padding-top: 48px;
	}

	.card-grid--three,
	.card-grid--two,
	.card-grid--four,
	.post-grid,
	.contact-grid,
	.legal-grid,
	.infrastructure-grid,
	.work-package__header,
	.work-package__grid,
	.stats-grid,
	.timeline-list--four,
	.brand-ribbon,
	.brand-ribbon__intro {
		grid-template-columns: 1fr;
	}

	.article-content,
	.content-card,
	.post-card,
	.partner-card,
	.contact-card,
	.legal-card,
	.work-package {
		padding: 24px;
	}

	.post-card__media {
		margin: -24px -24px 0;
	}

	.partner-card__header {
		align-items: flex-start;
	}

	.partner-card__logo-badge {
		min-width: 72px;
		max-width: 108px;
		padding: 7px 10px;
	}

	.partner-card__logo {
		max-width: 84px;
		max-height: 30px;
	}

	.brand-ribbon__mark {
		width: 72px;
		height: 72px;
		padding: 12px;
		border-radius: 22px;
	}

	.science-overview__frame {
		padding: 20px;
	}

	.news-timeline {
		padding: 24px;
	}

	.news-timeline__card {
		width: 230px;
	}
}

@media (max-width: 560px) {
	:root {
		--cec-gutter: 16px;
	}

	body {
		font-size: 1rem;
	}

	.hero__actions,
	.section-actions,
	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.partner-card__header {
		flex-wrap: wrap;
	}

	.button,
	.wp-element-button {
		width: 100%;
	}

	.infrastructure-stage img {
		aspect-ratio: 16 / 9;
	}

	.panel-pictogram {
		width: 64px;
		height: 64px;
		border-radius: 20px;
	}

	.panel-pictogram img {
		width: 30px;
		height: 30px;
	}

	.post-card__badge {
		width: 48px;
		height: 48px;
		border-radius: 14px;
	}

	.post-card__badge img {
		width: 24px;
		height: 24px;
	}

	.site-nav .button {
		width: auto;
	}

	.news-timeline {
		padding: 18px;
	}

	.news-timeline__viewport {
		margin: 0 -4px;
		padding-bottom: 18px;
	}

	.news-timeline__marker-label {
		font-size: 0.68rem;
	}

	.news-timeline__card {
		width: 210px;
		padding: 16px;
	}

	.site-nav__tools .button,
	.site-nav__tools .language-switcher {
		width: 100%;
	}

	.language-switcher {
		justify-content: center;
	}

	.site-brand__logo {
		width: 170px;
	}

	.brand-ribbon,
	.brand-ribbon__logos {
		padding: 22px;
	}

	.site-shell::before {
		top: 18rem;
		right: -18rem;
		width: 30rem;
		height: 30rem;
	}

	.site-shell::after {
		top: 60rem;
		left: -16rem;
		width: 26rem;
		height: 26rem;
	}
}
