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

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

@font-face {
	font-family: "Lato";
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url("../fonts/lato-900.ttf") format("truetype");
}

:root {
	--color-sun: #f2d347;
	--color-gold: #e49134;
	--color-orange: #c55526;
	--color-ink: #1d1d1b;
	--color-charcoal: #252321;
	--color-paper: #f4f4f4;
	--color-stone: #cac4c1;
	--color-card: #ffffff;
	--color-blue: #5e8bea;
	--color-indigo: #25337c;
	--color-green: #6e9c31;
	--color-red: #ea5b54;
	--shadow-soft: 0 24px 60px rgba(29, 29, 27, 0.12);
	--shadow-card: 0 18px 32px rgba(29, 29, 27, 0.1);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--radius-sm: 12px;
	--container: min(1180px, calc(100vw - 40px));
	--transition: 220ms ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
	font-size: 18px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

body.is-font-large {
	font-size: 20px;
}

body.is-high-contrast {
	--color-paper: #ffffff;
	--color-card: #ffffff;
	--color-ink: #000000;
	--color-charcoal: #000000;
	--shadow-soft: none;
	--shadow-card: none;
}

body.is-underline-links a {
	text-decoration: underline;
}

body.is-reduce-motion *,
body.is-reduce-motion *::before,
body.is-reduce-motion *::after {
	animation: none !important;
	scroll-behavior: auto !important;
	transition: none !important;
}

body.has-mobile-nav-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

button {
	cursor: pointer;
}

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

.skip-link {
	position: absolute;
	left: 24px;
	top: -100px;
	z-index: 1000;
	padding: 12px 18px;
	background: var(--color-ink);
	color: #fff;
	border-radius: 999px;
}

.skip-link:focus {
	top: 24px;
}

.container {
	width: var(--container);
	margin: 0 auto;
}

.section {
	padding: 88px 0;
}

.section--light {
	background: var(--color-paper);
}

.section--dark {
	background: #090909;
	color: #fff;
}

.section--charcoal {
	background: var(--color-charcoal);
	color: #fff;
}

.section-kicker {
	margin: 0 0 16px;
	color: var(--color-gold);
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 18px;
	line-height: 0.96;
}

h1 {
	font-size: clamp(3rem, 8vw, 6.4rem);
	letter-spacing: -0.04em;
}

h2 {
	font-size: clamp(1.8rem, 4vw, 2rem);
	letter-spacing: -0.04em;
}

h3 {
	font-size: clamp(1.1rem, 2vw, 1.55rem);
}

p {
	margin: 0 0 1.1rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
	box-shadow: 0 12px 24px rgba(197, 85, 38, 0.24);
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button--ghost,
.button--ghost-light {
	background: transparent;
	box-shadow: none;
}

.button--ghost {
	border-color: rgba(29, 29, 27, 0.16);
	color: var(--color-ink);
}

.button--ghost-light {
	border-color: rgba(255, 255, 255, 0.24);
	color: #fff;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(255, 253, 249, 0.94);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(29, 29, 27, 0.08);
	transition:
		background 220ms ease,
		border-color 220ms ease,
		box-shadow 220ms ease;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	min-height: 92px;
	transition:
		min-height 220ms ease,
		gap 220ms ease,
		padding 220ms ease;
}

@media (min-width: 861px) {
	.site-header__inner.container {
		width: calc(100vw - 64px);
		max-width: none;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
		grid-template-areas: "logo nav actions";
		gap: 32px;
	}

	.site-logo {
		grid-area: logo;
		justify-self: start;
	}

	.site-nav {
		grid-area: nav;
		justify-self: center;
	}

	.site-header__actions {
		grid-area: actions;
		justify-self: end;
	}
}

.site-logo {
	display: inline-flex;
	align-items: center;
	width: min(230px, 34vw);
	min-width: 168px;
	transition:
		width 220ms ease,
		min-width 220ms ease,
		transform 220ms ease;
}

.site-logo__image {
	width: 100%;
	height: auto;
	max-height: 120px;
	object-fit: contain;
	padding: 12px;
}

.site-logo__image--dark {
	display: none;
}

.site-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.95rem;
	font-weight: 700;
}

.site-nav__list a {
	position: relative;
	padding-bottom: 6px;
}

.site-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	transform: scaleX(0);
	transform-origin: left center;
	background: linear-gradient(90deg, var(--color-sun), var(--color-orange));
	transition: transform var(--transition);
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item a::after,
.site-nav__list .current-menu-parent a::after {
	transform: scaleX(1);
}

.site-nav__panel-head,
.site-nav__close {
	display: none;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	transition:
		opacity 220ms ease,
		transform 220ms ease,
		max-height 220ms ease,
		padding 220ms ease;
}

.header-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(29, 29, 27, 0.12);
	border-radius: 999px;
	background: #fff;
	color: var(--color-ink);
	font-size: 0.88rem;
	font-weight: 700;
}

.header-action__badge,
.floating-a11y-button__badge {
	position: absolute;
	top: -6px;
	right: -6px;
	display: grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
	color: #fff;
	font-size: 0.68rem;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 10px 22px rgba(197, 85, 38, 0.24);
}

.header-action img {
	width: 18px;
	height: 18px;
}

.site-header__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
	border: 0;
	background: transparent;
}

.site-header__toggle span:not(.screen-reader-text) {
	display: block;
	width: 28px;
	height: 3px;
	border-radius: 999px;
	background: var(--color-ink);
	transition:
		transform 220ms ease,
		opacity 220ms ease,
		background 220ms ease;
}

.site-header__toggle.is-open span:not(.screen-reader-text):nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.site-header__toggle.is-open span:not(.screen-reader-text):nth-child(2) {
	opacity: 0;
}

.site-header__toggle.is-open span:not(.screen-reader-text):nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.site-search-panel {
	padding: 0 0 22px;
	border-top: 1px solid rgba(29, 29, 27, 0.08);
	background: linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(246, 242, 235, 0.96) 100%);
}

.site-search-form {
	display: flex;
	gap: 12px;
	padding-top: 24px;
	align-items: stretch;
}

.site-search-form input,
.filter-bar input,
.filter-bar select {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(29, 29, 27, 0.12);
	border-radius: 16px;
	background: #fff;
	color: var(--color-ink);
}

.site-search-form input {
	min-height: 66px;
	padding: 18px 22px;
	border: 2px solid rgba(228, 145, 52, 0.26);
	border-radius: 24px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
	appearance: none;
	-webkit-appearance: none;
	transition:
		border-color var(--transition),
		box-shadow var(--transition),
		background var(--transition);
}

.site-search-form input::placeholder {
	color: rgba(29, 29, 27, 0.38);
}

.site-search-form input:focus,
.site-search-form input:focus-visible {
	outline: none;
	border-color: rgba(197, 85, 38, 0.78);
	box-shadow:
		0 0 0 5px rgba(228, 145, 52, 0.16),
		0 14px 32px rgba(197, 85, 38, 0.12);
}

.site-search-form button {
	flex: 0 0 auto;
	min-height: 66px;
	padding: 0 24px;
	border: 0;
	border-radius: 22px;
	background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
	color: #fff;
	font-size: 0.95rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	box-shadow: 0 16px 30px rgba(197, 85, 38, 0.22);
	transition:
		transform var(--transition),
		box-shadow var(--transition),
		opacity var(--transition);
}

.site-search-form button:hover,
.site-search-form button:focus-visible {
	outline: none;
	transform: translateY(-2px);
	box-shadow: 0 20px 34px rgba(197, 85, 38, 0.3);
}

.site-search-panel__results {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.site-search-result {
	padding: 18px;
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow-card);
}

.site-search-result small {
	display: block;
	margin-bottom: 8px;
	color: rgba(29, 29, 27, 0.58);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.header-action--theme {
	position: relative;
}

.header-action--theme::before {
	content: "◐";
	font-size: 1rem;
	line-height: 1;
}

html[data-theme="dark"] {
	--color-paper: #11100f;
	--color-card: #191715;
	--color-ink: #f6f1e7;
	--color-charcoal: #181614;
	--color-stone: #6d6761;
	--shadow-soft: 0 26px 60px rgba(0, 0, 0, 0.34);
	--shadow-card: 0 16px 36px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] body {
	background: var(--color-paper);
	color: var(--color-ink);
}

html[data-theme="dark"] .site-header {
	background: rgba(17, 16, 15, 0.92);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .site-logo__image--light {
	display: none;
}

html[data-theme="dark"] .site-logo__image--dark {
	display: block;
}

html[data-theme="dark"] .site-nav__list a::after {
	background: linear-gradient(90deg, var(--color-sun), var(--color-orange));
}

html[data-theme="dark"] .header-action {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.14);
	color: #fff;
}

html[data-theme="dark"] .header-action img {
	filter: invert(1);
}

html[data-theme="dark"] .header-action--theme::before {
	content: "◑";
}

html[data-theme="dark"] .site-header__toggle span:not(.screen-reader-text) {
	background: #fff;
}

html[data-theme="dark"] .site-search-panel {
	border-top-color: rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, rgba(20, 18, 16, 0.98) 0%, rgba(15, 14, 13, 0.96) 100%);
}

html[data-theme="dark"] .site-search-form input,
html[data-theme="dark"] .filter-bar input,
html[data-theme="dark"] .filter-bar select {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
}

html[data-theme="dark"] .site-search-form input {
	box-shadow: none;
}

html[data-theme="dark"] .site-search-form input::placeholder {
	color: rgba(255, 255, 255, 0.42);
}

html[data-theme="dark"] .site-search-form input:focus,
html[data-theme="dark"] .site-search-form input:focus-visible {
	border-color: rgba(242, 211, 71, 0.5);
	box-shadow:
		0 0 0 5px rgba(228, 145, 52, 0.14),
		0 16px 32px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .site-search-result {
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
}

html[data-theme="dark"] .site-search-result small {
	color: rgba(255, 255, 255, 0.58);
}

html[data-theme="dark"] .button--ghost {
	border-color: rgba(255, 255, 255, 0.16);
	color: #fff;
}

html[data-theme="dark"] .accessibility-panel {
	background: rgba(24, 22, 20, 0.96);
	color: #fff;
}

html[data-theme="dark"] .accessibility-panel__header button {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

html[data-theme="dark"] .site-footer {
	background: #1a1816;
}

html[data-theme="dark"] .archive-app__form,
html[data-theme="dark"] .archive-empty,
html[data-theme="dark"] .archive-pagination__link {
	background: #191715;
	color: #fff;
}

html[data-theme="dark"] .archive-app__search input {
	background: #11100f;
	border-color: rgba(255, 255, 255, 0.12);
	color: #fff;
}

html[data-theme="dark"] .archive-filter__select {
	border-color: rgba(255, 255, 255, 0.12);
	background: #11100f;
	color: #fff;
}

html[data-theme="dark"] .archive-filter__control::after {
	border-right-color: rgba(255, 255, 255, 0.72);
	border-bottom-color: rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .archive-app__status span {
	color: rgba(255, 255, 255, 0.56);
}

.home-page {
	background: #fffdf9;
	color: var(--color-ink);
	overflow-x: hidden;
}

.home-hero {
	position: relative;
	overflow: hidden;
	padding: 96px 0 64px;
	background:
		radial-gradient(circle at 74% 20%, rgba(242, 211, 71, 0.15), transparent 18%),
		radial-gradient(circle at 80% 28%, rgba(228, 145, 52, 0.1), transparent 20%),
		linear-gradient(180deg, #fffdf9 0%, #f8f4eb 100%);
}

.home-page {
	--home-container: min(1600px, calc(100vw - 64px));
}

.home-page .container {
	width: var(--home-container);
}

.home-hero__grid,
.home-network__grid,
.home-feature__grid,
.home-data__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
	align-items: center;
}

.home-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(560px, 760px);
	gap: 72px;
	align-items: start;
}

.home-network__grid {
	grid-template-columns: minmax(0, 0.96fr) minmax(620px, 1.04fr);
	gap: clamp(52px, 4vw, 92px);
	align-items: start;
}

.home-feature__grid {
	grid-template-columns: minmax(520px, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(52px, 4vw, 92px);
	align-items: center;
}

.home-data__grid {
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(52px, 4vw, 92px);
	align-items: start;
}

.home-hero__copy {
	max-width: 42rem;
	padding-top: 20px;
}

.home-network__copy,
.home-feature__copy,
.home-data__copy {
	max-width: 48rem;
}

.home-hero__title {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 28px;
	font-size: clamp(3.75rem, 7.8vw, 6rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.06em;
	text-transform: uppercase;
}

.home-hero__title .is-accent {
	color: var(--color-gold);
}

.home-hero__text-wrap {
	max-width: 36rem;
	margin-bottom: 34px;
	padding-left: 18px;
	border-left: 4px solid #1d1d1b;
}

.home-hero__text {
	max-width: 34rem;
	margin-bottom: 0;
	color: rgba(29, 29, 27, 0.74);
	font-size: 1.08rem;
	line-height: 1.48;
}

.home-hero__actions {
	display: flex;
	flex-wrap: nowrap;
	gap: 18px;
}

.home-hero__actions .button {
	min-width: 278px;
	padding: 20px 32px;
	border-width: 2px;
	border-radius: 0;
	box-shadow: none;
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: none;
}

.home-hero__actions .button:not(.button--ghost) {
	background: #1d1d1b;
}

.home-hero__actions .button--ghost {
	background: #fff;
	border-color: #1d1d1b;
}

.home-hero__visual {
	position: relative;
	min-height: 620px;
	overflow: hidden;
}

.home-hero__rings {
	position: absolute;
	right: 6%;
	top: -9%;
	width: min(1160px, 182%);
	opacity: 0.38;
}

.home-hero__stack {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 36px;
	width: min(610px, 100%);
	margin: 58px 0 0 auto;
}

.home-hero__card {
	position: relative;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 36px rgba(29, 29, 27, 0.16);
}

.home-hero__card--metrics {
	width: 100%;
	margin-left: auto;
	padding: 28px 32px 32px;
}

.home-hero__lead {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px;
	align-items: end;
}

.home-hero__lead-copy {
	display: grid;
	gap: 10px;
}

.home-hero__lead-label {
	display: block;
	color: #1d1d1b;
	font-size: 1.28rem;
	font-weight: 900;
	line-height: 1;
}

.home-hero__lead-value {
	display: block;
	color: #1d1d1b;
	font-size: clamp(1.5rem, 2.3vw, 2rem);
	font-weight: 500;
	line-height: 1.08;
}

.home-hero__lead-highlight {
	display: grid;
	justify-items: end;
	align-self: center;
}

.home-hero__lead-highlight strong {
	display: block;
	color: var(--color-gold);
	font-size: clamp(1.2rem, 4.8vw, 3rem);
	font-weight: 500;
	line-height: 0.9;
}

.home-hero__lead-highlight small {
	display: block;
	margin-top: 2px;
	color: #1d1d1b;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.1;
	text-align: right;
}

.home-hero__progress {
	margin: 28px 0 18px;
}

.home-hero__progress-track {
	height: 18px;
	background: #ebebeb;
	border-radius: 999px;
	overflow: hidden;
}

.home-hero__progress-track span {
	background: linear-gradient(90deg, #ec962f 0%, #ef9b2f 100%);
}

.home-hero__metric {
	border: 1px solid rgba(29, 29, 27, 0.06);
	border-radius: 18px;
	background: #fff;
}

.home-hero__metric--small {
	padding: 16px 20px 18px;
	background: #f6f5f3;
}

.home-hero__metric span,
.home-hero__metric strong,
.home-hero__metric small {
	display: block;
}

.home-hero__metric span {
	margin-bottom: 6px;
	color: rgba(29, 29, 27, 0.52);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-hero__metric strong {
	font-size: clamp(1.25rem, 2.3vw, 2rem);
	line-height: 1.02;
}

.home-hero__metric small {
	color: rgba(29, 29, 27, 0.72);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.35;
}

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

.home-hero__card--narrative {
	display: grid;
	gap: 12px;
	width: 100%;
	margin-left: auto;
	padding: 28px 32px 28px;
	background: #ec962f;
	color: #fff;
}

.home-hero__narrative-rings {
	position: absolute;
	right: -10px;
	top: 50%;
	width: 230px;
	opacity: 0.16;
	transform: translateY(-50%);
	pointer-events: none;
}

.home-hero__card--narrative span {
	position: relative;
	z-index: 1;
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 245, 225, 0.78);
}

.home-hero__card--narrative strong {
	position: relative;
	z-index: 1;
	max-width: 26rem;
	font-size: clamp(0.8rem, 3.2vw, 1.6rem);
	line-height: 1.08;
}

.home-hero__card--narrative a {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-self: end;
	margin-top: 8px;
	font-size: 0.92rem;
	font-weight: 900;
	letter-spacing: -0.01em;
}

.home-hero__card--narrative a::after {
	content: "›";
	font-size: 1.4rem;
	line-height: 1;
}

.home-stats-strip {
	background: #1e1c19;
	color: #fff;
}

.home-stats-strip__grid {
	display: grid;
	grid-template-columns: repeat(var(--home-stats-count, 4), minmax(0, 1fr));
}

.home-stat {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.home-stat:last-child {
	border-right: 0;
}

.home-stat__icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
}

.home-stat__icon img {
	width: 20px;
	height: 20px;
	filter: brightness(0) saturate(100%) invert(71%) sepia(81%) saturate(716%) hue-rotate(353deg) brightness(98%) contrast(86%);
}

.home-stat__body span,
.home-stat__body strong,
.home-stat__body small {
	display: block;
}

.home-stat__body span {
	margin-bottom: 4px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-stat__body strong {
	font-size: 2.1rem;
	line-height: 1;
}

.home-stat__body small {
	color: var(--color-sun);
	font-size: 0.94rem;
	font-weight: 700;
}

.home-network {
	padding: 82px 0 86px;
	background: #fffdf9;
}

.home-network__copy h2,
.home-section-head h2,
.home-news__heading h2 {
	font-size: clamp(1.8rem, 4vw, 2rem);
	text-transform: uppercase;
}

.home-network__copy p:not(.section-kicker),
.home-section-head p,
.home-news__heading p {
	max-width: 42rem;
	color: rgba(29, 29, 27, 0.72);
}

.home-network__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.home-network__actions {
	margin-top: 28px;
}

.home-network__actions .button {
	min-width: 280px;
	border-radius: 999px;
}

.home-mini-card {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 14px;
	padding: 18px;
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--shadow-card);
}

.home-mini-card--gold .home-mini-card__icon {
	background: rgba(228, 145, 52, 0.14);
}

.home-mini-card--ink .home-mini-card__icon {
	background: rgba(29, 29, 27, 0.08);
}

.home-mini-card__icon,
.home-data__tile-icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
}

.home-mini-card__icon img,
.home-data__tile-icon img {
	width: 20px;
	height: 20px;
}

.home-mini-card strong,
.home-mini-card p {
	display: block;
}

.home-mini-card strong {
	margin-bottom: 6px;
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-mini-card p {
	margin-bottom: 0;
	color: rgba(29, 29, 27, 0.66);
	font-size: 0.9rem;
}

.home-network__goals {
	width: min(100%, 720px);
	margin-left: auto;
	padding: 26px 28px;
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.home-network__goals h3 {
	margin-bottom: 20px;
	font-size: 1.7rem;
	text-transform: uppercase;
}

.home-goal {
	position: relative;
	padding: 14px 0 14px 24px;
	border-bottom: 1px solid rgba(29, 29, 27, 0.08);
}

.home-goal::before {
	content: "";
	position: absolute;
	left: 0;
	top: 22px;
	width: 10px;
	height: 10px;
	border: 2px solid var(--color-gold);
	border-radius: 999px;
}

.home-goal:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.home-goal strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.84rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-goal p {
	margin-bottom: 0;
	color: rgba(29, 29, 27, 0.6);
	font-size: 0.94rem;
}

.home-data,
.home-news {
	background: linear-gradient(180deg, #120f0d 0%, #090807 100%);
	color: #fff;
}

.home-feature {
	background: #fff;
	color: var(--color-ink);
	padding: 70px 0;
}

.home-feature__map-card {
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.home-feature__map-visual {
	position: relative;
	width: min(100%, 620px);
	margin: 0 auto;
	overflow: hidden;
}

.home-feature__map-image {
	width: 100%;
	height: auto;
}

.home-feature__map-overlay {
	position: absolute;
	inset: 0;
}

.home-feature__map-note {
	margin: 16px 0 0;
	color: rgba(29, 29, 27, 0.62);
	font-size: 0.82rem;
	font-weight: 700;
	text-align: center;
}

.home-map-hotspot {
	position: absolute;
	z-index: 1;
	--home-hotspot-anchor-shift: 0%;
	transform: translate(var(--home-hotspot-anchor-shift), -50%);
}

.home-map-hotspot.is-selected {
	z-index: 2;
}

.home-map-hotspot__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 0 0 24px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.home-map-hotspot--align-left {
	--home-hotspot-anchor-shift: -100%;
}

.home-map-hotspot--align-left .home-map-hotspot__button {
	padding: 0 24px 0 0;
}

.home-map-hotspot__dot {
	position: relative;
	display: inline-block;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	pointer-events: none;
}

.home-map-hotspot__pulse,
.home-map-hotspot__core {
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 999px;
	transform: translate(-50%, -50%);
}

.home-map-hotspot__pulse {
	width: 28px;
	height: 28px;
	border: 2px solid rgba(255, 102, 0, 0.58);
	background: rgba(255, 255, 255, 0.28);
	animation: home-map-pulse 2.2s ease-out infinite;
}

.home-map-hotspot__core {
	width: 14px;
	height: 14px;
	border: 3px solid #fff;
	background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
	box-shadow: 0 10px 20px rgba(197, 85, 38, 0.34);
}

.home-map-hotspot__button .home-map-hotspot__dot {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-50%, -50%);
}

.home-map-hotspot--align-left .home-map-hotspot__button .home-map-hotspot__dot {
	left: auto;
	right: 0;
	transform: translate(50%, -50%);
}

.home-map-hotspot.is-selected .home-map-hotspot__core {
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 12px 24px rgba(197, 85, 38, 0.42);
}

.home-map-hotspot__map-label {
	display: inline-block;
	color: #f96d00;
	font-size: clamp(0.95rem, 1.45vw, 1.1rem);
	font-weight: 900;
	line-height: 1;
	text-shadow: 0 2px 12px rgba(255, 255, 255, 0.38);
	white-space: nowrap;
}

.home-map-hotspot__popover {
	position: absolute;
	display: none;
	min-width: 220px;
	max-width: 260px;
	padding: 16px 18px 15px;
	border-radius: 18px;
	border: 1px solid rgba(29, 29, 27, 0.08);
	background: rgba(255, 248, 232, 0.96);
	box-shadow: 0 22px 44px rgba(9, 8, 7, 0.14);
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.home-map-hotspot__close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: none;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(29, 29, 27, 0.08);
	color: var(--color-ink);
	font-size: 1.25rem;
	line-height: 1;
}

@media (hover: none), (pointer: coarse) {
	.home-map-hotspot__close {
		display: inline-flex;
	}

	.home-map-hotspot.is-closed-manually .home-map-hotspot__popover,
	.home-map-hotspot.is-closed-manually:focus-within .home-map-hotspot__popover {
		opacity: 0 !important;
		pointer-events: none !important;
		transform: translate3d(0, -6px, 0) !important;
	}
}

.home-map-hotspot__eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--color-gold);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-map-hotspot__popover h3 {
	margin-bottom: 8px;
	color: var(--color-ink);
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 0.95;
	text-transform: none;
}

.home-map-hotspot__popover p {
	margin-bottom: 12px;
	color: rgba(29, 29, 27, 0.68);
	font-size: 0.88rem;
	line-height: 1.45;
}

.home-map-hotspot__popover a {
	color: var(--color-orange);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-map-hotspot--align-right .home-map-hotspot__popover {
	left: 20px;
	transform: translate3d(0, -6px, 0);
}

.home-map-hotspot--align-left .home-map-hotspot__popover {
	right: 20px;
	transform: translate3d(0, -6px, 0);
}

.home-map-hotspot--align-top .home-map-hotspot__popover {
	bottom: calc(100% + 10px);
}

.home-map-hotspot--align-bottom .home-map-hotspot__popover {
	top: calc(100% + 10px);
}

.home-map-hotspot:hover,
.home-map-hotspot:focus-within,
.home-map-hotspot.is-open {
	z-index: 3;
}

.home-map-hotspot:hover .home-map-hotspot__popover,
.home-map-hotspot:focus-within .home-map-hotspot__popover,
.home-map-hotspot.is-open .home-map-hotspot__popover {
	display: block;
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
}

.home-map-hotspot__button:focus-visible {
	outline: 3px solid rgba(29, 29, 27, 0.34);
	outline-offset: 4px;
}

@keyframes home-map-pulse {
	0% {
		transform: translate(-50%, -50%) scale(0.8);
		opacity: 0.82;
	}

	70% {
		transform: translate(-50%, -50%) scale(1.45);
		opacity: 0;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.45);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-map-hotspot__pulse {
		animation: none;
	}
}

.home-feature__copy h2 {
	margin: 18px 0 14px;
	color: var(--color-ink);
	font-size: clamp(1.8rem, 4vw, 2rem);
	text-transform: uppercase;
}

.home-feature__copy p {
	max-width: 38rem;
	color: rgba(29, 29, 27, 0.72);
}

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

.home-feature__meta-item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.home-feature__meta-icon {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.home-feature__meta-copy {
	min-width: 0;
}

.home-feature__meta-copy span,
.home-feature__meta-copy strong {
	display: block;
}

.home-feature__meta-copy span {
	margin-bottom: 2px;
	color: rgba(29, 29, 27, 0.56);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-feature__meta-copy strong {
	color: var(--color-gold);
	font-size: 0.96rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.home-feature__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	max-width: 560px;
	margin-top: 24px;
}

.home-feature__fact-card {
	padding: 18px 18px 16px;
	border-radius: 12px;
	border: 1px solid rgba(29, 29, 27, 0.08);
	background: #fff;
	color: var(--color-ink);
	box-shadow: 0 18px 36px rgba(9, 8, 7, 0.08);
}

.home-feature__fact-card span,
.home-feature__fact-card strong,
.home-feature__fact-card small {
	display: block;
}

.home-feature__fact-card span {
	margin-bottom: 6px;
	color: rgba(29, 29, 27, 0.48);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-feature__fact-card strong {
	margin-bottom: 8px;
	font-size: 2rem;
	line-height: 0.95;
}

.home-feature__fact-card small {
	color: rgba(29, 29, 27, 0.6);
	font-size: 0.84rem;
}

.home-feature__link,
.home-data__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-feature__link {
	color: var(--color-ink);
}

.home-feature__link::after,
.home-data__link::after {
	content: "›";
	font-size: 1rem;
}

.home-explained-teaser {
	padding: 10px 0 82px;
	background: #fff;
}

.home-explained-teaser__card {
	position: relative;
	overflow: hidden;
	padding: 46px 52px;
	border-radius: 34px;
	background:
		linear-gradient(135deg, rgba(242, 140, 0, 0.16) 0%, rgba(255, 247, 235, 0.96) 34%, #fff 100%);
	box-shadow: 0 28px 56px rgba(9, 8, 7, 0.08);
}

.home-explained-teaser__card::before {
	content: "";
	position: absolute;
	right: -4%;
	bottom: -48%;
	width: min(540px, 54vw);
	aspect-ratio: 1;
	background: url("../images/bg-element.png") no-repeat center / contain;
	opacity: 0.22;
	pointer-events: none;
}

.home-explained-teaser__card::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 10px;
	background: linear-gradient(180deg, var(--color-gold), var(--color-orange));
}

.home-explained-teaser__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.25fr);
	gap: 54px;
	align-items: start;
}

.home-explained-teaser__intro h2 {
	margin: 14px 0 22px;
	font-size: clamp(2.15rem, 4.3vw, 3.35rem);
	line-height: 0.94;
	text-transform: uppercase;
}

.home-explained-teaser__intro .button {
	min-width: 300px;
}

.home-explained-teaser__text {
	max-width: 52rem;
}

.home-explained-teaser__text p {
	margin: 0;
	color: rgba(29, 29, 27, 0.76);
	font-size: 1.08rem;
	line-height: 1.75;
}

.home-explained-teaser__text p + p {
	margin-top: 18px;
}

.home-messages,
.home-downloads {
	background: #282521;
	color: #fff;
}

.home-messages {
	padding: 78px 0 92px;
}

.home-messages__heading,
.home-news__heading {
	text-align: center;
}

.home-messages__heading h2 {
	text-transform: uppercase;
}

.home-messages__heading .section-kicker,
.home-news__heading .section-kicker {
	justify-content: center;
}

.home-messages__grid,
.home-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 1.8vw, 32px);
	margin-top: 32px;
}

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

.home-message-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 28px;
	border-radius: 14px;
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
	transition:
		background var(--transition),
		transform var(--transition),
		box-shadow var(--transition);
}

.home-message-card:hover,
.home-message-card:focus-within {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.home-message-card__number {
	margin-bottom: 18px;
	color: var(--color-gold);
	font-size: 2rem;
	font-weight: 900;
}

.home-message-card h3 {
	margin-bottom: 12px;
	font-size: clamp(1.5rem, 2.3vw, 2.4rem);
	line-height: 1;
	text-transform: none;
}

.home-message-card p {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.68);
}

.home-message-card a,
.home-news-card a {
	margin-top: auto;
	color: var(--color-gold);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-data {
	padding: 76px 0 88px;
}

.home-data__chart {
	padding: 30px 32px;
	border-radius: 12px;
	background: #fff;
	color: var(--color-ink);
	box-shadow: var(--shadow-soft);
}

.home-data__chart h3 {
	margin-bottom: 24px;
	font-size: 1.35rem;
	text-transform: uppercase;
}

.home-data__bar + .home-data__bar {
	margin-top: 22px;
}

.home-data__bar-label {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 10px;
}

.home-data__bar-label span {
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.home-data__bar-track {
	height: 10px;
	border-radius: 999px;
	background: rgba(29, 29, 27, 0.08);
	overflow: hidden;
}

.home-data__bar-track span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
	transform-origin: left center;
	will-change: transform, opacity;
}

.home-data__bar small {
	display: block;
	margin-top: 8px;
	color: rgba(29, 29, 27, 0.56);
	font-size: 0.82rem;
}

.home-data__copy h2 {
	color: #fff;
	font-size: clamp(2.3rem, 4vw, 4rem);
	text-transform: uppercase;
}

.home-data__copy p {
	max-width: 38rem;
	color: rgba(255, 255, 255, 0.72);
}

.home-data__tiles {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 280px));
	gap: 14px;
	max-width: 100%;
	margin-top: 30px;
}

.home-data__tile {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 14px;
	padding: 16px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.07);
}

.home-data__tile-icon {
	background: #fff;
}

.home-data__tile strong {
	display: block;
	margin-bottom: 6px;
	font-size: 0.84rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-data__tile p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.88rem;
}

.home-downloads {
	padding: 78px 0 86px;
}

.home-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 28px;
}

.home-section-head .button {
	padding: 13px 18px;
	border-radius: 8px;
	background: #e49134;
	box-shadow: none;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.home-downloads__list {
	display: grid;
	gap: 18px;
}

.download-file-icon,
.download-action-icon {
	display: block;
	background: currentColor;
	-webkit-mask-image: var(--download-icon);
	mask-image: var(--download-icon);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.download-file-icon {
	width: 42px;
	height: 42px;
}

.download-action-icon {
	width: 34px;
	height: 34px;
}

.home-download-row {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: 22px 32px;
	border: 1px solid transparent;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.09);
	transition:
		background var(--transition),
		border-color var(--transition),
		box-shadow var(--transition),
		transform var(--transition);
}

.home-download-row:hover,
.home-download-row:focus-within {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.06);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
	transform: translateY(-2px);
}

.home-download-row__icon {
	display: grid;
	place-items: center;
	width: 96px;
	height: 96px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-sun);
	transition: background var(--transition), color var(--transition);
}

.home-download-row:hover .home-download-row__icon,
.home-download-row:focus-within .home-download-row__icon {
	background: rgba(255, 255, 255, 0.12);
}

.home-download-row__body h3 {
	margin-bottom: 10px;
	color: #fff;
	font-size: clamp(1.45rem, 2.1vw, 2.2rem);
	letter-spacing: -0.04em;
	transition: color var(--transition);
}

.home-download-row:hover .home-download-row__body h3,
.home-download-row:focus-within .home-download-row__body h3 {
	color: var(--color-sun);
}

.home-download-row__meta {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.94rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.home-download-row__link {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	color: rgba(255, 255, 255, 0.56);
	transition:
		color var(--transition),
		background var(--transition),
		transform var(--transition);
}

.home-download-row:hover .home-download-row__link,
.home-download-row:focus-within .home-download-row__link {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transform: translateX(2px);
}

.home-download-row__link.is-disabled {
	opacity: 0.34;
	pointer-events: none;
}

.home-news {
	padding: 84px 0 92px;
}

.home-news__line {
	width: 58px;
	height: 2px;
	margin: 0 auto 22px;
	background: var(--color-gold);
}

.home-news__heading p {
	margin: 0 auto;
	text-align: center;
	color: rgba(255, 255, 255, 0.86);
}

.home-downloads .home-section-head p {
	color: rgba(255, 255, 255, 0.86);
}

.home-news-card {
	display: flex;
	flex-direction: column;
}

.home-news-card__image {
	aspect-ratio: 16 / 10;
	border-radius: 14px;
	background-position: center;
	background-size: cover;
}

.home-news-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding-top: 14px;
}

.home-news-card h3 {
	margin-bottom: 8px;
	color: #fff;
	font-size: 1.04rem;
}

.home-news-card p {
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.92rem;
}

html[data-theme="dark"] .home-page {
	background: #11100f;
	color: #fff;
}

html[data-theme="dark"] .home-hero {
	background:
		radial-gradient(circle at 74% 20%, rgba(242, 211, 71, 0.14), transparent 18%),
		radial-gradient(circle at 80% 28%, rgba(228, 145, 52, 0.1), transparent 20%),
		linear-gradient(180deg, #141210 0%, #0f0e0d 100%);
}

html[data-theme="dark"] .home-hero__text,
html[data-theme="dark"] .home-feature {
	background: linear-gradient(180deg, #120f0d 0%, #090807 100%);
	color: #fff;
}

html[data-theme="dark"] .home-network__copy p:not(.section-kicker),
html[data-theme="dark"] .home-mini-card p,
html[data-theme="dark"] .home-goal p,
html[data-theme="dark"] .home-feature__copy p,
html[data-theme="dark"] .home-feature__link {
	background: transparent;
}

html[data-theme="dark"] .home-feature__copy h2 {
	color: #fff;
}

html[data-theme="dark"] .home-feature__copy p,
html[data-theme="dark"] .home-feature__link {
	color: #fff;
}

html[data-theme="dark"] .home-feature__copy p {
	color: rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .home-goal p {
	color: rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .home-hero__card--metrics,
html[data-theme="dark"] .home-network__goals {
	background: rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .home-hero__metric,
html[data-theme="dark"] .home-mini-card,
html[data-theme="dark"] .home-feature__fact-card,
html[data-theme="dark"] .home-data__chart {
	background: #191715;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .home-hero__text-wrap {
	border-left-color: rgba(255, 255, 255, 0.84);
}

html[data-theme="dark"] .home-hero__lead-label,
html[data-theme="dark"] .home-hero__lead-value,
html[data-theme="dark"] .home-hero__lead-highlight small {
	color: #fff;
}

html[data-theme="dark"] .home-hero__progress-track {
	background: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .home-hero__metric span,
html[data-theme="dark"] .home-feature__fact-card span,
html[data-theme="dark"] .home-data__bar small,
html[data-theme="dark"] .home-mini-card p {
	color: rgba(255, 255, 255, 0.58);
}

html[data-theme="dark"] .home-hero__actions .button--ghost {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

html[data-theme="dark"] .home-network__actions .button--ghost {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

html[data-theme="dark"] .home-network {
	background: #181512;
	color: #fff;
}

html[data-theme="dark"] .home-explained-teaser {
	background: linear-gradient(180deg, #141210 0%, #0f0e0d 100%);
}

html[data-theme="dark"] .home-explained-teaser__card {
	background:
		linear-gradient(135deg, rgba(242, 140, 0, 0.18) 0%, rgba(31, 26, 22, 0.94) 34%, rgba(18, 15, 13, 0.98) 100%);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .home-explained-teaser__intro h2 {
	color: #fff;
}

html[data-theme="dark"] .home-explained-teaser__text p {
	color: rgba(255, 255, 255, 0.76);
}

html[data-theme="dark"] .home-feature__map-card {
	background: transparent;
}

html[data-theme="dark"] .home-feature__map-note {
	color: rgba(255, 255, 255, 0.62);
}

html[data-theme="dark"] .home-map-hotspot__popover {
	background: rgba(255, 248, 232, 0.96);
}

html[data-theme="dark"] .home-map-hotspot__close {
	background: rgba(29, 29, 27, 0.08);
	color: var(--color-ink);
}

html[data-theme="dark"] .home-map-hotspot__popover h3 {
	color: var(--color-ink);
}

html[data-theme="dark"] .home-map-hotspot__popover p {
	color: rgba(29, 29, 27, 0.68);
}

html[data-theme="dark"] .home-map-hotspot__button:focus-visible {
	outline-color: rgba(255, 255, 255, 0.46);
}

html[data-theme="dark"] .home-data__tile {
	background: rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .home-data__tile-icon {
	background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .home-download-row {
	background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .home-download-row__body p,
html[data-theme="dark"] .home-news-card p {
	color: rgba(255, 255, 255, 0.56);
}

html[data-theme="dark"] .home-download-row:hover,
html[data-theme="dark"] .home-download-row:focus-within {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .home-news-card__image {
	filter: saturate(0.92) brightness(0.88);
}

@media (max-width: 1230px) {
	.home-hero__actions {
		flex-wrap: wrap;
	}
}

@media (max-width: 1120px) {
	.home-hero__grid,
	.home-network__grid,
	.home-feature__grid,
	.home-explained-teaser__grid,
	.home-data__grid,
	.home-messages__grid {
		grid-template-columns: 1fr;
	}

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

	.home-feature__meta,
	.home-stats-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hero__stack {
		width: 100%;
		margin: 30px 0 0;
	}

	.home-hero__card--metrics,
	.home-hero__card--narrative {
		width: 100%;
		margin-left: 0;
	}

	.home-network__actions .button {
		min-width: 0;
		width: 100%;
	}

	.home-explained-teaser__intro .button {
		min-width: 0;
		width: 100%;
	}

	.home-page .container {
		width: var(--container);
	}
}

@media (max-width: 860px) {
	.home-hero {
		padding: 82px 0 62px;
	}

	.home-stats-strip__grid,
	.home-network__cards,
	.home-feature__facts,
	.home-data__tiles,
	.home-news__grid {
		grid-template-columns: 1fr;
	}

	.home-section-head,
	.home-feature__meta {
		grid-template-columns: 1fr;
	}

	.home-feature__meta,
	.home-section-head {
		display: grid;
	}

	.home-download-row {
		grid-template-columns: 72px minmax(0, 1fr) auto;
		gap: 18px;
		padding: 18px 20px;
	}

	.home-feature__map-visual {
		width: min(100%, 440px);
	}

	.home-explained-teaser {
		padding: 0 0 68px;
	}

	.home-explained-teaser__card {
		padding: 30px 24px 32px;
		border-radius: 26px;
	}

	.home-explained-teaser__card::after {
		width: 100%;
		height: 8px;
		top: auto;
		right: 0;
		bottom: 0;
	}

	.home-explained-teaser__grid {
		gap: 26px;
	}

	.home-explained-teaser__intro h2 {
		font-size: clamp(1.9rem, 8vw, 2.5rem);
	}

	.home-explained-teaser__text p {
		font-size: 1rem;
		line-height: 1.68;
	}

	.home-hero__visual {
		min-height: auto;
	}

	.home-hero__actions {
		flex-wrap: wrap;
	}

	.home-hero__lead {
		grid-template-columns: 1fr;
	}

	.home-hero__lead-highlight {
		justify-items: start;
	}

	.home-hero__lead-highlight small {
		text-align: left;
	}

	.home-map-hotspot__popover {
		min-width: 190px;
		max-width: 220px;
	}
}

@media (max-width: 640px) {
	.site-header {
		position: relative;
		top: auto;
	}

	.site-header.is-mobile-condensed {
		position: sticky;
		top: 0;
		box-shadow: 0 12px 28px rgba(29, 29, 27, 0.08);
	}

	.site-header.is-mobile-condensed .site-header__inner {
		gap: 12px;
		min-height: 68px;
	}

	.site-header.is-mobile-condensed .site-logo {
		width: min(112px, 30vw);
		min-width: 88px;
	}

	.site-header.is-mobile-condensed .site-header__actions {
		max-height: 0;
		padding-bottom: 0;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		transform: translateY(-10px);
	}

	.site-header.is-mobile-condensed .site-header__toggle {
		padding: 8px;
	}

	.site-header.is-mobile-condensed .site-header__toggle span:not(.screen-reader-text) {
		width: 24px;
	}

	.site-header.is-nav-open .site-header__actions {
		max-height: 0;
		padding-bottom: 0;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		transform: translateY(-10px);
	}

	.site-header.is-nav-open .site-logo {
		width: min(124px, 32vw);
		min-width: 96px;
	}

	.home-hero__title {
		font-size: clamp(2.8rem, 16vw, 4.8rem);
	}

	.home-hero__text-wrap {
		padding-left: 14px;
	}

	.home-hero__actions {
		flex-direction: column;
	}

	.home-hero__actions .button,
	.home-section-head .button {
		width: 100%;
	}

	.home-hero__actions .button {
		min-width: 0;
		padding: 18px 24px;
	}

	.home-hero__card--metrics,
	.home-hero__card--narrative {
		padding: 22px 22px 24px;
	}

	.home-hero__metric-grid {
		grid-template-columns: 1fr;
	}

	.home-hero__card--narrative {
		width: 100%;
		margin-left: 0;
	}

	.home-stat {
		padding: 18px 16px;
	}

	.home-feature__map-card,
	.home-data__chart,
	.home-network__goals {
		padding: 20px;
	}

	.home-message-card,
	.home-download-row {
		padding: 20px;
	}

	.home-download-row__icon,
	.download-row__icon {
		width: 72px;
		height: 72px;
		border-radius: 18px;
	}

	.download-file-icon {
		width: 34px;
		height: 34px;
	}

	.home-download-row__link,
	.download-row__link {
		width: 50px;
		height: 50px;
		border-radius: 16px;
	}

	.download-action-icon {
		width: 28px;
		height: 28px;
	}

	.home-feature__map-note {
		font-size: 0.76rem;
	}

	.home-map-hotspot__button {
		min-height: 24px;
		padding-left: 20px;
	}

	.home-map-hotspot__dot {
		width: 24px;
		height: 24px;
		flex-basis: 24px;
	}

	.home-map-hotspot__pulse {
		width: 24px;
		height: 24px;
	}

	.home-map-hotspot__core {
		width: 12px;
		height: 12px;
	}

	.home-map-hotspot--align-left .home-map-hotspot__button {
		padding-right: 20px;
	}

	.home-map-hotspot__popover {
		min-width: 168px;
		max-width: 196px;
		padding: 14px 15px 13px;
	}

	.home-map-hotspot__close {
		display: inline-flex;
	}

	.home-map-hotspot__popover p {
		font-size: 0.8rem;
	}

	.home-map-hotspot__map-label {
		font-size: 0.88rem;
		max-width: 92px;
		white-space: normal;
		line-height: 0.95;
		text-wrap: balance;
	}

	.home-map-hotspot--align-right .home-map-hotspot__map-label {
		text-align: left;
	}

	.home-map-hotspot--align-left .home-map-hotspot__map-label {
		text-align: right;
	}
}

.hero-section {
	position: relative;
	overflow: hidden;
	padding: 110px 0 72px;
	background:
		radial-gradient(circle at right top, rgba(242, 211, 71, 0.16), transparent 36%),
		radial-gradient(circle at left top, rgba(228, 145, 52, 0.1), transparent 28%),
		var(--color-paper);
}

.hero-grid,
.section-grid,
.feature-grid,
.data-grid,
.archive-hero__grid,
.detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 42px;
	align-items: center;
}

.hero-title {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: 8ch;
}

.hero-title .is-accent {
	color: var(--color-gold);
}

.hero-copy__text,
.section-text,
.archive-hero p {
	max-width: 38rem;
	font-size: 1.08rem;
	color: rgba(29, 29, 27, 0.78);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.hero-panel {
	position: relative;
	min-height: 440px;
}

.hero-panel__rings {
	position: absolute;
	inset: 0 auto auto 50%;
	width: min(620px, 100%);
	transform: translateX(-48%);
	opacity: 0.26;
}

.hero-panel__card {
	position: relative;
	width: min(470px, 100%);
	margin: 56px 0 0 auto;
	padding: 30px;
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(16px);
}

.hero-metric {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 6px 14px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(29, 29, 27, 0.08);
}

.hero-metric:last-of-type {
	margin-bottom: 22px;
}

.hero-metric p,
.hero-metric span {
	margin: 0;
}

.hero-metric strong {
	font-size: 1.4rem;
	color: var(--color-gold);
}

.hero-message {
	padding: 18px 20px;
	border-radius: 22px;
	background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
	color: #fff;
	font-weight: 700;
}

.stats-strip {
	padding: 0;
	background: var(--color-charcoal);
	color: #fff;
}

.stats-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card:last-child {
	border-right: 0;
}

.stat-card__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
}

.stat-card strong {
	display: block;
	font-size: 1.9rem;
	line-height: 1;
}

.stat-card span,
.stat-card small {
	display: block;
}

.stat-card small {
	color: var(--color-sun);
}

.goal-list,
.data-chart,
.detail-stats {
	padding: 32px;
	border-radius: var(--radius-xl);
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.goal-item {
	padding: 18px 0;
	border-bottom: 1px solid rgba(29, 29, 27, 0.08);
}

.goal-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.feature-map {
	padding: 26px;
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.04);
}

.feature-copy p,
.data-copy p {
	color: rgba(255, 255, 255, 0.76);
}

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

.feature-stat {
	padding: 18px;
	border-radius: 22px;
	background: #fff;
	color: var(--color-ink);
}

.feature-stat--light {
	background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.92));
	box-shadow: var(--shadow-card);
}

.feature-stat span,
.feature-stat small {
	display: block;
}

.feature-stat strong {
	display: block;
	margin: 8px 0;
	font-size: 1.8rem;
	line-height: 1;
}

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

.message-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 30px;
}

.message-card,
.content-card,
.location-card,
.project-card {
	position: relative;
	overflow: hidden;
	padding: 28px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.08);
}

.content-card--light,
.location-card,
.feature-stat--light {
	background: #fff;
	color: var(--color-ink);
}

.location-card--dark {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.message-card:nth-child(2) {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
}

.message-card__number {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--color-gold);
	font-size: 1.9rem;
	font-weight: 900;
}

.data-chart h3 {
	margin-bottom: 26px;
	color: var(--color-ink);
}

.data-bar + .data-bar {
	margin-top: 24px;
}

.data-bar__label {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 10px;
	color: var(--color-ink);
}

.data-bar__track {
	position: relative;
	height: 10px;
	border-radius: 999px;
	background: rgba(29, 29, 27, 0.08);
	overflow: hidden;
}

.data-bar__track span {
	display: block;
	height: 100%;
	width: 76%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
	transform-origin: left center;
	will-change: transform, opacity;
}

html.has-js .home-data__bar-track span,
html.has-js .data-bar__track span {
	opacity: 0.38;
	transform: scaleX(0);
	transition:
		transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.5s ease;
}

html.has-js .home-data__bar.is-bar-visible .home-data__bar-track span,
html.has-js .data-bar.is-bar-visible .data-bar__track span {
	opacity: 1;
	transform: scaleX(1);
}

html.has-js .home-data__bar:nth-child(2) .home-data__bar-track span,
html.has-js .data-bar:nth-child(2) .data-bar__track span {
	transition-delay: 0.08s;
}

html.has-js .home-data__bar:nth-child(3) .home-data__bar-track span,
html.has-js .data-bar:nth-child(3) .data-bar__track span {
	transition-delay: 0.16s;
}

html.has-js .home-data__bar:nth-child(4) .home-data__bar-track span,
html.has-js .data-bar:nth-child(4) .data-bar__track span {
	transition-delay: 0.24s;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.download-list {
	display: grid;
	gap: 16px;
}

.download-row {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: 24px 28px;
	border: 1px solid rgba(29, 29, 27, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 36px rgba(29, 29, 27, 0.08);
	transition:
		background var(--transition),
		border-color var(--transition),
		box-shadow var(--transition),
		transform var(--transition);
}

.download-row--light {
	background: #fffaf2;
}

.download-row:hover,
.download-row:focus-within {
	background: #f1ede7;
	border-color: rgba(228, 145, 52, 0.18);
	box-shadow: 0 22px 40px rgba(29, 29, 27, 0.12);
	transform: translateY(-2px);
}

.download-row__icon {
	display: grid;
	place-items: center;
	width: 96px;
	height: 96px;
	border-radius: 24px;
	background: rgba(29, 29, 27, 0.04);
	color: var(--color-sun);
	transition: background var(--transition), color var(--transition);
}

.download-row--light .download-row__icon {
	background: rgba(29, 29, 27, 0.05);
}

.download-row:hover .download-row__icon,
.download-row:focus-within .download-row__icon {
	background: rgba(255, 255, 255, 0.52);
}

.download-row__body h2,
.download-row__body h3,
.content-card__body h2,
.content-card__body h3,
.location-card h2,
.project-card h3 {
	line-height: 1.1;
}

.download-row__body h2,
.download-row__body h3 {
	margin-bottom: 10px;
	font-size: clamp(1.45rem, 2vw, 2rem);
	letter-spacing: -0.04em;
	transition: color var(--transition);
}

.download-row:hover .download-row__body h2,
.download-row:hover .download-row__body h3,
.download-row:focus-within .download-row__body h2,
.download-row:focus-within .download-row__body h3 {
	color: var(--color-gold);
}

.download-row__body p {
	color: rgba(29, 29, 27, 0.68);
}

.download-row__body p:last-child {
	margin-bottom: 0;
}

.download-row__body .content-card__meta {
	margin: 0 0 12px;
	font-size: 0.9rem;
	font-weight: 700;
	color: rgba(29, 29, 27, 0.56);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.download-row__link {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	color: rgba(29, 29, 27, 0.46);
	transition:
		color var(--transition),
		background var(--transition),
		transform var(--transition);
}

.download-row:hover .download-row__link,
.download-row:focus-within .download-row__link {
	background: rgba(29, 29, 27, 0.06);
	color: var(--color-ink);
	transform: translateX(2px);
}

.download-row__link.is-disabled {
	opacity: 0.3;
	pointer-events: none;
}

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

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

.location-card--overview {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.location-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background:
		linear-gradient(160deg, rgba(242, 211, 71, 0.16), rgba(197, 85, 38, 0.12)),
		#f5f0e7;
}

.location-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.location-card__media.is-empty img {
	padding: 24px;
	object-fit: contain;
	opacity: 0.18;
}

.location-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 24px 28px 28px;
}

.location-card__excerpt {
	margin-bottom: 24px;
	color: rgba(29, 29, 27, 0.78);
}

.location-card__meta-grid {
	display: grid;
	gap: 10px;
	margin-top: auto;
}

.location-card__meta-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 10px;
	border-top: 1px solid rgba(29, 29, 27, 0.08);
}

.location-card__meta-icon {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.location-card__meta-copy {
	min-width: 0;
}

.location-card__meta-copy span,
.location-card__meta-copy strong {
	display: block;
}

.location-card__meta-copy span {
	margin-bottom: 2px;
	color: rgba(29, 29, 27, 0.5);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.location-card__meta-copy strong {
	color: var(--color-gold);
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
}

.content-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.content-card__image {
	height: 180px;
	margin: -28px -28px 24px;
	background:
		linear-gradient(160deg, rgba(242, 211, 71, 0.85), rgba(197, 85, 38, 0.88)),
		url("../images/bg-element.png") center / cover no-repeat;
}

.content-card__kicker {
	margin-bottom: 10px;
	color: var(--color-gold);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.content-card__meta,
.location-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 18px 0 0;
	font-size: 0.92rem;
	color: rgba(29, 29, 27, 0.66);
}

.location-card--dark .content-card__kicker,
.location-card--dark .location-card__meta {
	color: rgba(255, 255, 255, 0.72);
}

.location-card .button,
.content-card a,
.project-card a {
	margin-top: auto;
}

.location-card .button {
	margin-top: 28px;
}

.archive-hero {
	position: relative;
	overflow: hidden;
	padding: 90px 0 60px;
	background:
		radial-gradient(circle at 80% 18%, rgba(242, 211, 71, 0.14), transparent 28%),
		linear-gradient(180deg, #fff 0%, var(--color-paper) 100%);
}

.archive-hero--legal {
	padding: 64px 0 18px;
}

.archive-hero--single {
	padding-bottom: 72px;
}

.archive-hero__art {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.7);
	box-shadow: var(--shadow-soft);
}

.archive-hero__art img {
	width: 100%;
	max-width: 420px;
}

.about-page {
	padding-bottom: 110px;
}

.about-hero {
	padding: 72px 0 28px;
}

.about-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr);
	gap: 34px;
	align-items: start;
}

.about-hero__grid--single {
	grid-template-columns: 1fr;
}

.about-hero__copy {
	max-width: 860px;
}

.about-hero__copy h1 {
	margin-bottom: 22px;
}

.about-hero__copy p:last-child {
	margin-bottom: 0;
	font-size: clamp(1.1rem, 2.1vw, 1.42rem);
	line-height: 1.55;
	color: rgba(29, 29, 27, 0.76);
}

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

.about-hero__fact-card {
	display: grid;
	gap: 12px;
	min-height: 180px;
	padding: 30px 28px;
	border-radius: 28px;
	background: #fff;
	box-shadow: var(--shadow-card);
}

.about-hero__fact-card strong {
	font-size: clamp(2.35rem, 4.4vw, 3.45rem);
	line-height: 0.95;
	letter-spacing: -0.05em;
}

.about-hero__fact-card span {
	color: rgba(29, 29, 27, 0.56);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.45;
}

.about-network-feature,
.about-potential,
.about-join {
	padding: 34px 0;
}

.about-network-feature__grid,
.about-potential__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	gap: 38px;
	align-items: center;
}

.about-network-feature__map {
	padding: 28px 28px 24px;
	border-radius: 34px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
	box-shadow: var(--shadow-soft);
}

.about-network-feature__map .home-feature__map-visual {
	min-height: 720px;
}

.about-network-feature__map .home-map-hotspot__popover {
	min-width: 240px;
}

.about-network-feature__copy,
.about-potential__copy {
	display: grid;
	gap: 18px;
}

.about-network-feature__copy h2,
.about-potential__copy h2,
.about-join__content h2 {
	font-size: clamp(2.2rem, 4vw, 3.35rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.about-prose {
	display: grid;
	gap: 1rem;
}

.about-prose p {
	margin: 0;
	font-size: clamp(1.04rem, 1.7vw, 1.18rem);
	line-height: 1.72;
	color: rgba(29, 29, 27, 0.76);
}

.about-potential__media {
	position: relative;
	order: 2;
	min-height: 520px;
	border-radius: 34px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.about-potential__copy {
	order: 1;
}

.about-potential__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-potential__placeholder {
	display: grid;
	place-items: center;
	gap: 18px;
	height: 100%;
	padding: 38px;
	background:
		radial-gradient(circle at 22% 18%, rgba(242, 211, 71, 0.16), transparent 28%),
		linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(244, 244, 244, 0.88));
	text-align: center;
}

.about-potential__placeholder img {
	width: min(360px, 76%);
	opacity: 0.55;
	object-fit: contain;
}

.about-potential__placeholder span {
	color: rgba(29, 29, 27, 0.5);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.about-join__card {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 32px;
	padding: 40px;
	border-radius: 36px;
	background:
		linear-gradient(135deg, rgba(228, 145, 52, 0.98), rgba(197, 85, 38, 0.96)),
		radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.18), transparent 22%);
	box-shadow: 0 28px 56px rgba(197, 85, 38, 0.22);
	color: #fff;
}

.about-join__content {
	display: grid;
	gap: 16px;
}

.about-join__content .section-kicker,
.about-join__content p,
.about-join__content h2 {
	color: #fff;
}

.about-join__content .section-kicker {
	margin-bottom: 0;
}

.about-join__content h2 {
	margin-bottom: 0;
}

.about-join__content .about-prose p {
	color: rgba(255, 255, 255, 0.9);
}

.about-join__contact {
	display: grid;
	align-content: start;
	gap: 16px;
	padding: 26px 24px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
}

.about-join__contact-item {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	color: #fff;
}

.about-join__contact-item strong {
	font-size: 1.12rem;
	line-height: 1.35;
}

.about-join__contact-item--plain {
	grid-template-columns: 1fr;
	gap: 8px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-join__contact-item--plain span {
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.about-join__contact-item--plain strong {
	font-size: 1.35rem;
}

.about-join__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
}

.about-join__contact-icon svg {
	width: 20px;
	height: 20px;
}

.explained-page {
	padding-bottom: 116px;
	background:
		radial-gradient(circle at 82% 12%, rgba(242, 211, 71, 0.14), transparent 24%),
		linear-gradient(180deg, #fff 0%, var(--color-paper) 100%);
}

.explained-hero {
	position: relative;
	padding: 78px 0 42px;
	overflow: hidden;
}

.explained-hero::after {
	content: "";
	position: absolute;
	right: -180px;
	top: 40px;
	width: 760px;
	height: 760px;
	background: url("../images/bg-element.png") center/contain no-repeat;
	opacity: 0.26;
	pointer-events: none;
}

.explained-hero__grid,
.explained-sections__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
	gap: 38px;
	align-items: start;
}

.explained-hero__copy {
	display: grid;
	gap: 20px;
	max-width: 50rem;
}

.explained-hero__copy h1 {
	font-size: clamp(3rem, 6vw, 5.6rem);
	line-height: 0.92;
	letter-spacing: -0.06em;
}

.explained-hero__subtitle {
	margin: 0;
	max-width: 34rem;
	color: var(--color-gold);
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	font-weight: 800;
	line-height: 1.08;
}

.explained-card {
	position: relative;
	overflow: hidden;
	border-radius: 34px;
	box-shadow: var(--shadow-soft);
}

.explained-card__inner {
	padding: 32px 30px 34px;
}

.explained-card--feature {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 244, 244, 0.92));
}

.explained-card--feature::after {
	content: "";
	position: absolute;
	right: -56px;
	bottom: -90px;
	width: 330px;
	height: 330px;
	background: url("../images/bg-element.png") center/contain no-repeat;
	opacity: 0.14;
	pointer-events: none;
}

.explained-card--light {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 248, 0.94));
}

.explained-card--accent {
	background: linear-gradient(135deg, rgba(228, 145, 52, 0.98), rgba(197, 85, 38, 0.96));
	color: #fff;
}

.explained-card h2 {
	margin-bottom: 16px;
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
}

.explained-card--accent .section-kicker,
.explained-card--accent h2,
.explained-card--accent .explained-prose,
.explained-card--accent .explained-prose p {
	color: #fff;
}

.explained-prose {
	display: grid;
	gap: 1rem;
}

.explained-prose p {
	margin: 0;
	color: rgba(29, 29, 27, 0.78);
	font-size: clamp(1.05rem, 1.55vw, 1.18rem);
	line-height: 1.74;
}

.explained-prose--compact p,
.explained-prose--closing p {
	font-size: 1rem;
	line-height: 1.72;
}

.explained-prose--closing {
	margin-top: 16px;
}

.explained-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.explained-feature-list li {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100%;
	padding: 16px 16px 16px 50px;
	border-radius: 20px;
	background: rgba(29, 29, 27, 0.04);
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.45;
}

.explained-feature-list li::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 50%;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	border-radius: 50%;
	background:
		radial-gradient(circle at center, rgba(255, 255, 255, 0.94) 0 28%, transparent 30%),
		linear-gradient(135deg, var(--color-gold), var(--color-orange));
	box-shadow: 0 0 0 5px rgba(228, 145, 52, 0.16);
}

.explained-sections {
	padding: 22px 0 0;
}

html[data-theme="dark"] .explained-page {
	background:
		radial-gradient(circle at 82% 12%, rgba(242, 211, 71, 0.08), transparent 24%),
		linear-gradient(180deg, #0d0c0b 0%, #12100f 100%);
}

html[data-theme="dark"] .explained-card--feature,
html[data-theme="dark"] .explained-card--light {
	background: linear-gradient(160deg, rgba(25, 23, 21, 0.98), rgba(17, 16, 15, 0.98));
	color: #fff;
}

html[data-theme="dark"] .explained-prose p {
	color: rgba(255, 255, 255, 0.78);
}

html[data-theme="dark"] .explained-feature-list li {
	background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1120px) {
	.about-hero__grid,
	.about-network-feature__grid,
	.about-potential__grid,
	.about-join__card,
	.explained-hero__grid,
	.explained-sections__grid {
		grid-template-columns: 1fr;
	}

	.about-potential__media,
	.about-potential__copy {
		order: initial;
	}

	.about-network-feature__map .home-feature__map-visual {
		min-height: 620px;
	}

	.explained-feature-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.about-hero {
		padding-top: 56px;
	}

	.about-hero__facts {
		grid-template-columns: 1fr;
	}

	.about-hero__fact-card,
	.about-join__card {
		padding: 28px 24px;
	}

	.about-network-feature__map {
		padding: 20px 20px 18px;
		border-radius: 28px;
	}

	.about-network-feature__map .home-feature__map-visual {
		min-height: 520px;
	}

	.about-potential__media {
		min-height: 360px;
	}

	.explained-page {
		padding-bottom: 82px;
	}

	.explained-hero {
		padding-top: 56px;
	}

	.explained-hero::after {
		right: -180px;
		top: 140px;
		width: 520px;
		height: 520px;
		opacity: 0.18;
	}

	.explained-card__inner {
		padding: 26px 22px 28px;
	}

	.explained-card h2 {
		font-size: clamp(1.8rem, 7vw, 2.5rem);
	}

	.explained-hero__subtitle {
		font-size: 1.2rem;
	}
}

.archive-app {
	display: grid;
	gap: 24px;
}

.archive-app.is-loading {
	opacity: 0.62;
	pointer-events: none;
}

.archive-app__form {
	display: grid;
	gap: 18px;
	padding: 24px;
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--shadow-card);
}

.archive-app__search input {
	width: 100%;
	padding: 15px 18px;
	border: 1px solid rgba(29, 29, 27, 0.12);
	border-radius: 16px;
	background: #fff;
}

.archive-app__facets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px 20px;
}

.archive-filter {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.archive-filter__label {
	font-size: 0.84rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.archive-filter__control {
	position: relative;
}

.archive-filter__control::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 10px;
	border-right: 2px solid rgba(29, 29, 27, 0.58);
	border-bottom: 2px solid rgba(29, 29, 27, 0.58);
	transform: translateY(-60%) rotate(45deg);
	pointer-events: none;
}

.archive-filter__select {
	width: 100%;
	padding: 14px 46px 14px 16px;
	border: 1px solid rgba(29, 29, 27, 0.12);
	border-radius: 16px;
	background: #fff;
	color: var(--color-ink);
	font-size: 0.92rem;
	font-weight: 700;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.archive-filter__select:focus {
	outline: none;
	border-color: rgba(228, 145, 52, 0.72);
	box-shadow: 0 0 0 4px rgba(228, 145, 52, 0.14);
}

.archive-app__actions,
.archive-app__status {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.archive-app__actions .button {
	color: #fff;
	-webkit-text-fill-color: #fff;
}

.archive-app__status strong {
	font-size: 1.8rem;
	line-height: 1;
}

.archive-app__status span {
	color: rgba(29, 29, 27, 0.62);
}

.archive-app__pagination:empty {
	display: none;
}

.archive-empty {
	margin: 0;
	padding: 24px;
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow-card);
}

.archive-pagination {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.archive-pagination__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	border: 1px solid rgba(29, 29, 27, 0.12);
	border-radius: 999px;
	background: #fff;
	font-weight: 700;
}

.archive-pagination__link.is-active {
	border-color: transparent;
	background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
	color: #fff;
}

.regio-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.regio-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.regio-tag--sun {
	background: #f8d100;
	color: #1d1d1b;
}

.regio-tag--gold {
	background: #f28c00;
	color: #fff;
}

.regio-tag--orange {
	background: #d54b0b;
	color: #fff;
}

.regio-tag--indigo {
	background: #213381;
	color: #fff;
}

.regio-tag--sky {
	background: #508cf1;
	color: #fff;
}

.regio-tag--coral {
	background: #fd4d4d;
	color: #fff;
}

.regio-tag--green {
	background: #609d0f;
	color: #fff;
}

.filter-bar {
	display: grid;
	grid-template-columns: 1.4fr repeat(2, minmax(180px, 1fr)) auto;
	gap: 12px;
	margin-bottom: 28px;
}

.filter-bar--wide {
	grid-template-columns: 1.2fr repeat(4, minmax(160px, 1fr)) auto;
}

.detail-copy blockquote {
	margin: 32px 0 12px;
	padding-left: 20px;
	border-left: 4px solid var(--color-gold);
	font-size: clamp(1.3rem, 2vw, 1.9rem);
	line-height: 1.35;
}

.detail-copy cite {
	font-style: normal;
	font-weight: 700;
	color: rgba(29, 29, 27, 0.7);
}

.detail-stats {
	display: grid;
	gap: 18px;
}

.detail-stats--stacked {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.bullet-list {
	margin: 0;
	padding-left: 20px;
}

.bullet-list li + li {
	margin-top: 12px;
}

.prose {
	max-width: 820px;
}

.prose > * + * {
	margin-top: 1rem;
}

.section--legal {
	padding: 10px 0 72px;
}

.section--legal .prose {
	max-width: 960px;
}

.section--legal .prose > :first-child {
	margin-top: 0;
}

.section--legal .prose p,
.section--legal .prose li,
.section--legal .prose strong,
.section--legal .prose em {
	font-size: 1rem;
	line-height: 1.72;
}

.section--legal .prose p.wp-block-paragraph {
	margin-bottom: 1rem;
}

.section--legal .prose h2,
.section--legal .prose h3,
.section--legal .prose h4 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	line-height: 1.08;
}

.site-footer {
	padding: 74px 0 68px;
	background: #262320;
	color: #fff;
}

.site-footer .container {
	width: min(1600px, calc(100vw - 64px));
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.9fr) minmax(280px, 1fr);
	gap: clamp(48px, 4vw, 88px);
	align-items: start;
}

.site-footer__brand img {
	width: 190px;
	max-width: 100%;
	margin-bottom: 26px;
}

.site-footer__brand p {
	max-width: 31rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.98rem;
	line-height: 1.55;
}

.site-footer h3 {
	margin-bottom: 18px;
	font-size: 1.05rem;
	font-weight: 900;
}

.site-footer__menus {
	display: grid;
	gap: 28px;
}

.site-footer__service h3 {
	margin-bottom: 14px;
}

.footer-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-nav li + li {
	margin-top: 16px;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.35;
	transition: color var(--transition), transform var(--transition);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
	color: var(--color-sun);
	transform: translateX(2px);
}

.footer-nav--service a {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.64);
}

.site-footer__office-title {
	margin-bottom: 14px;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.45;
	color: #fff;
}

.site-footer__address {
	display: grid;
	gap: 4px;
	margin-bottom: 20px;
}

.site-footer__address p,
.site-footer__contact-person {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.5;
}

.site-footer__contact-person {
	margin-bottom: 18px;
}

.site-footer__contact-list {
	display: grid;
	gap: 14px;
}

.site-footer__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #fff;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.35;
}

.site-footer__contact-item:hover,
.site-footer__contact-item:focus-visible {
	color: var(--color-sun);
}

.site-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	color: var(--color-gold);
}

.site-footer__contact-icon svg {
	width: 100%;
	height: 100%;
}

.site-footer__cta-wrap {
	margin: 26px 0 0;
}

.site-footer__cta {
	min-width: 220px;
	border-color: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.site-footer__cta:hover,
.site-footer__cta:focus-visible {
	border-color: rgba(242, 211, 71, 0.34);
	color: #fff;
}

.floating-a11y-button {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 220;
	padding: 14px 18px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
	color: #fff;
	font-weight: 700;
	box-shadow: 0 18px 36px rgba(29, 29, 27, 0.24);
	display: none;
}

.floating-a11y-button__badge {
	top: -8px;
	right: -8px;
	border-color: rgba(255, 255, 255, 0.82);
}

.accessibility-panel {
	position: fixed;
	right: 20px;
	bottom: 84px;
	z-index: 230;
	width: min(380px, calc(100vw - 40px));
	padding: 22px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--shadow-soft);
}

.accessibility-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.accessibility-panel__header button {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: rgba(29, 29, 27, 0.08);
}

.accessibility-panel__controls {
	display: grid;
	gap: 10px;
}

.accessibility-panel__controls [data-accessibility-setting] {
	justify-content: center;
	border-width: 2px;
	transition:
		transform var(--transition),
		opacity var(--transition),
		box-shadow var(--transition),
		background var(--transition),
		color var(--transition),
		border-color var(--transition);
}

.accessibility-panel__controls [data-accessibility-setting].is-active,
.accessibility-panel__controls [data-accessibility-setting][aria-pressed="true"] {
	border-color: transparent;
	background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
	color: #fff;
	box-shadow: 0 18px 32px rgba(197, 85, 38, 0.22);
}

.accessibility-panel__controls [data-accessibility-setting].is-active:hover,
.accessibility-panel__controls [data-accessibility-setting][aria-pressed="true"]:hover,
.accessibility-panel__controls [data-accessibility-setting].is-active:focus-visible,
.accessibility-panel__controls [data-accessibility-setting][aria-pressed="true"]:focus-visible {
	box-shadow: 0 22px 36px rgba(197, 85, 38, 0.28);
}

.accessibility-panel__controls [data-accessibility-reset].is-disabled,
.accessibility-panel__controls [data-accessibility-reset]:disabled {
	opacity: 0.52;
	cursor: default;
	box-shadow: none;
	transform: none;
}

.reveal {
	opacity: 1;
	transform: translateY(0);
}

html.has-js .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 540ms ease, transform 540ms ease;
}

html.has-js .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1120px) {
	.hero-grid,
	.section-grid,
	.feature-grid,
	.data-grid,
	.archive-hero__grid,
	.detail-grid,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer .container {
		width: var(--container);
	}

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

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

	.detail-stats--stacked,
	.feature-stats,
	.stats-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.filter-bar,
	.filter-bar--wide {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.archive-app__facets {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	body {
		font-size: 17px;
	}

	.site-header__inner {
		grid-template-columns: auto auto;
		position: relative;
		z-index: 2;
	}

	.site-logo {
		width: min(190px, 44vw);
		min-width: 132px;
	}

	.site-header__toggle {
		display: inline-flex;
		justify-self: end;
	}

	.floating-a11y-button {
		display: inline-flex;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		z-index: 260;
		display: none;
		padding: 0;
		background: rgba(255, 253, 249, 0.82);
		backdrop-filter: blur(20px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity 220ms ease,
			visibility 220ms ease;
	}

	.site-nav.is-open {
		display: block;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.site-nav__panel {
		display: flex;
		flex-direction: column;
		width: min(90vw, 420px);
		height: 100dvh;
		margin-left: auto;
		padding: 0 24px calc(28px + env(safe-area-inset-bottom, 0px));
		background: rgba(255, 253, 249, 0.99);
		box-shadow: -22px 0 52px rgba(29, 29, 27, 0.16);
		transform: translateX(104%);
		transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
		overflow-y: auto;
	}

	.site-nav.is-open .site-nav__panel {
		transform: translateX(0);
	}

	.site-nav__panel-head {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		padding: calc(20px + env(safe-area-inset-top, 0px)) 0 18px;
		margin-bottom: 18px;
		position: sticky;
		top: 0;
		z-index: 2;
		background: inherit;
		border-bottom: 1px solid rgba(29, 29, 27, 0.08);
	}

	.site-nav__close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0 0 0 12px;
		border: 0;
		background: transparent;
		color: var(--color-ink);
		font-size: 1rem;
		font-weight: 800;
		letter-spacing: 0.01em;
		flex: 0 0 auto;
	}

	.site-nav__close::after {
		content: "×";
		margin-left: 8px;
		font-size: 1.3rem;
		line-height: 1;
	}

	.site-nav__list {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
		background: #fff;
		border-radius: 22px;
		box-shadow: 0 18px 34px rgba(29, 29, 27, 0.08);
		overflow: hidden;
	}

	.site-nav__list li + li {
		border-top: 1px solid rgba(29, 29, 27, 0.08);
	}

	.site-nav__list a {
		display: block;
		padding: 18px 20px;
		font-size: 1.12rem;
		font-weight: 800;
	}

	html[data-theme="dark"] .site-nav {
		background: rgba(10, 9, 8, 0.72);
	}

	html[data-theme="dark"] .site-nav__panel {
		background: rgba(25, 23, 21, 0.98);
		box-shadow: -20px 0 48px rgba(0, 0, 0, 0.28);
	}

	html[data-theme="dark"] .site-nav__panel-head {
		border-bottom-color: rgba(255, 255, 255, 0.08);
	}

	html[data-theme="dark"] .site-nav__close {
		color: #fff;
	}

	html[data-theme="dark"] .site-nav__list {
		background: rgba(255, 255, 255, 0.04);
	}

	html[data-theme="dark"] .site-nav__list li + li {
		border-top-color: rgba(255, 255, 255, 0.08);
	}

	.site-header__actions {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
		padding-bottom: 18px;
		width: 100%;
	}

	.site-header.is-nav-open .site-header__actions {
		max-height: 0;
		padding-bottom: 0;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		transform: translateY(-10px);
	}

	.header-action {
		width: 100%;
		height: 54px;
		border-radius: 22px;
	}

	.header-action img {
		width: 20px;
		height: 20px;
	}

	body.has-mobile-nav-open .floating-a11y-button {
		opacity: 0;
		pointer-events: none;
		transform: translate3d(0, 12px, 0);
	}

	.hero-section,
	.archive-hero,
	.section {
		padding: 72px 0;
	}

	.hero-panel__card {
		margin: 32px 0 0;
	}

	.message-grid,
	.card-grid--news,
	.card-grid--regiopole,
	.detail-stats--stacked,
	.feature-stats,
	.stats-strip__grid,
	.filter-bar,
	.filter-bar--wide {
		grid-template-columns: 1fr;
	}

	.archive-app__actions,
	.archive-app__status {
		align-items: flex-start;
	}

	.download-row {
		grid-template-columns: 72px minmax(0, 1fr) auto;
		gap: 18px;
		padding: 18px 20px;
		text-align: left;
	}

	.section-heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-search-form {
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.hero-title {
		max-width: none;
	}

	.button {
		width: 100%;
	}

	.site-header__inner {
		gap: 16px;
		min-height: 84px;
	}

	.site-header__actions {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
		padding-bottom: 16px;
	}

	.header-action {
		height: 50px;
		min-width: 0;
		border-radius: 20px;
	}

	.header-action__badge {
		top: -5px;
		right: -5px;
	}

	.floating-a11y-button {
		right: 16px;
		bottom: 16px;
		width: auto;
		max-width: calc(100vw - 32px);
		padding: 12px 16px;
		font-size: 0.88rem;
		line-height: 1;
		white-space: nowrap;
	}

	.floating-a11y-button__badge {
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		font-size: 0.62rem;
	}

	.hero-actions {
		flex-direction: column;
	}
}

.regiopole-detail {
	background: #fffdf9;
	color: var(--color-ink);
}

.regiopole-detail__hero,
.regiopole-detail__section,
.regiopole-detail__quote-band {
	background: transparent;
}

.regiopole-detail__hero {
	padding: 42px 0 72px;
}

.regiopole-detail__backlink {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: var(--color-gold);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.regiopole-detail__backlink::before {
	content: "←";
	font-size: 1.1rem;
	line-height: 1;
}

.regiopole-detail__breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(29, 29, 27, 0.42);
	font-size: 0.8rem;
}

.regiopole-detail__breadcrumb li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.regiopole-detail__breadcrumb li + li::before {
	content: "/";
	color: rgba(29, 29, 27, 0.26);
}

.regiopole-detail__hero-copy {
	max-width: 920px;
	margin: 24px 0 18px;
}

.regiopole-detail__hero-copy h1 {
	margin-bottom: 0;
	color: var(--color-ink);
	font-size: clamp(3.8rem, 9vw, 7.4rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.regiopole-detail__meta-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 30px;
	margin-bottom: 40px;
}

.regiopole-detail__meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0;
}

.regiopole-detail__meta-item strong {
	color: var(--color-gold);
	font-size: 0.96rem;
	font-weight: 900;
	line-height: 1.3;
	text-transform: uppercase;
}

.regiopole-detail__meta-icon {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.regiopole-detail__top-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 34px;
	align-items: start;
}

.regiopole-detail__top-copy {
	display: grid;
	gap: 16px;
}

.regiopole-detail__copy-card {
	padding: 0;
}

.regiopole-detail__copy-title {
	position: relative;
	display: inline-block;
	margin-bottom: 24px;
	padding-bottom: 14px;
	color: var(--color-ink);
	font-size: clamp(1.65rem, 3vw, 2rem);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.regiopole-detail__copy-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 92px;
	height: 4px;
	background: var(--color-ink);
}

.regiopole-detail__prose,
.regiopole-detail__copy-card p {
	max-width: 22rem;
	color: rgba(29, 29, 27, 0.82);
	font-size: 1rem;
	line-height: 1.35;
}

.regiopole-detail__prose > *:last-child {
	margin-bottom: 0;
}

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

.regiopole-detail__fact-card {
	min-height: 0;
	padding: 18px 16px 16px;
	border-radius: 12px;
	background: #f3f1ed;
	color: var(--color-ink);
	box-shadow: none;
}

.regiopole-detail__fact-card strong,
.regiopole-detail__fact-card span,
.regiopole-detail__fact-card small {
	display: block;
}

.regiopole-detail__fact-card strong {
	margin-bottom: 8px;
	font-size: 2rem;
	line-height: 0.95;
}

.regiopole-detail__fact-card span {
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.regiopole-detail__fact-card small {
	margin-top: 6px;
	color: rgba(29, 29, 27, 0.6);
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
}

.regiopole-detail__visual {
	min-height: 100%;
}

.regiopole-detail__visual-image,
.regiopole-detail__visual-fallback {
	width: 100%;
	aspect-ratio: 16 / 8;
	border-radius: 18px;
}

.regiopole-detail__visual-image {
	height: 100%;
	object-fit: cover;
	box-shadow: 0 18px 38px rgba(29, 29, 27, 0.12);
}

.regiopole-detail__visual-fallback {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: end;
	padding: 32px;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
		linear-gradient(135deg, #6b7079, #1b1b1a 72%);
	box-shadow: 0 18px 38px rgba(29, 29, 27, 0.12);
}

.regiopole-detail__visual-fallback img {
	position: absolute;
	right: -8%;
	top: -12%;
	width: min(72%, 420px);
	opacity: 0.18;
	filter: saturate(0) brightness(1.7);
}

.regiopole-detail__visual-fallback-copy {
	position: relative;
	z-index: 1;
	max-width: 20rem;
}

.regiopole-detail__visual-fallback-copy span,
.regiopole-detail__visual-fallback-copy small {
	display: block;
	text-transform: uppercase;
}

.regiopole-detail__visual-fallback-copy span {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.regiopole-detail__visual-fallback-copy strong {
	display: block;
	margin-bottom: 8px;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 0.95;
	text-transform: uppercase;
}

.regiopole-detail__visual-fallback-copy small {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.regiopole-detail__quote-band {
	padding: 6px 0 78px;
}

.regiopole-quote-slider {
	position: relative;
	outline: none;
}

.regiopole-quote-slider__slides {
	position: relative;
	transition: min-height 420ms ease;
}

.regiopole-quote-slider__slides.is-animating {
	overflow: hidden;
}

.regiopole-quote-slide {
	display: grid;
	grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
	gap: 34px;
	align-items: stretch;
	padding: 0 34px;
	border-radius: 18px;
	background: #f7f4ee;
	color: var(--color-ink);
	box-shadow: 0 16px 36px rgba(29, 29, 27, 0.08);
	will-change: opacity, transform;
}

.regiopole-quote-slide[hidden] {
	display: none;
}

.regiopole-quote-slide.is-animating {
	position: absolute;
	inset: 0;
	width: 100%;
}

.regiopole-quote-slide__portrait {
	height: 100%;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	align-self: stretch;
	background: transparent;
	overflow: visible;
}

.regiopole-quote-slide__portrait-image {
	display: block;
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

.regiopole-quote-slide__portrait-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
	color: #fff;
	font-size: 3.4rem;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.regiopole-quote-slide__content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 28px 0;
}

.regiopole-quote-slide__mark {
	position: absolute;
	left: -18px;
	top: -22px;
	color: rgba(228, 145, 52, 0.18);
	font-size: 6.8rem;
	line-height: 1;
}

.regiopole-quote-slide__quote-shell {
	position: relative;
	margin: 0 0 24px;
}

.regiopole-quote-slide blockquote {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: clamp(1.55rem, 3vw, 2.55rem);
	font-style: italic;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.regiopole-quote-slide footer {
	margin-top: 28px;
}

.regiopole-quote-slide footer strong,
.regiopole-quote-slide footer small {
	display: block;
}

.regiopole-quote-slide footer strong {
	color: var(--color-gold);
	font-size: 1.32rem;
	font-weight: 900;
	text-transform: uppercase;
}

.regiopole-quote-slide footer small {
	color: rgba(29, 29, 27, 0.52);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.regiopole-quote-slider__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 14px;
}

.regiopole-quote-slider__controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(228, 145, 52, 0.18);
	border-radius: 999px;
	background: transparent;
	color: var(--color-gold);
	font-size: 0;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.regiopole-quote-slider__controls button::before {
	font-size: 1.5rem;
	line-height: 1;
}

.regiopole-quote-slider__controls button[data-quote-prev]::before {
	content: "‹";
}

.regiopole-quote-slider__controls button[data-quote-next]::before {
	content: "›";
}

.regiopole-quote-slider__controls span {
	color: rgba(29, 29, 27, 0.52);
	font-size: 0.86rem;
	font-weight: 700;
}

.regiopole-detail__section {
	padding: 0 0 74px;
}

.regiopole-detail__section-heading {
	margin-bottom: 22px;
}

.regiopole-detail__section-heading h2 {
	margin-bottom: 0;
	color: var(--color-ink);
	font-size: clamp(1.8rem, 4vw, 2rem);
	text-transform: uppercase;
}

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

.regiopole-detail__highlight-card {
	display: grid;
	gap: 12px;
}

.regiopole-detail__highlight-stat {
	min-height: 0;
	padding: 16px 18px 14px;
	border-radius: 0;
	background: #f7f4ee;
	color: var(--color-ink);
	box-shadow: none;
	border-left: 2px solid rgba(197, 85, 38, 0.48);
}

.regiopole-detail__highlight-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.regiopole-detail__highlight-stat span,
.regiopole-detail__highlight-stat strong,
.regiopole-detail__highlight-stat small {
	display: block;
}

.regiopole-detail__highlight-stat span {
	margin-bottom: 0;
	color: rgba(29, 29, 27, 0.38);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.regiopole-detail__highlight-icon {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.regiopole-detail__highlight-stat strong {
	margin-bottom: 8px;
	font-size: clamp(1.85rem, 3vw, 2.55rem);
	line-height: 0.95;
}

.regiopole-detail__highlight-stat small {
	color: var(--color-gold);
	font-size: 0.96rem;
	font-weight: 700;
}

.regiopole-detail__highlight-card p {
	margin: 0;
	color: rgba(29, 29, 27, 0.74);
	font-size: 0.95rem;
	line-height: 1.35;
}

.regiopole-detail__section--regional {
	padding-top: 8px;
}

.regiopole-detail__regional-banner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.45fr);
	gap: 24px;
	padding: 34px 38px;
	overflow: hidden;
	border: 1px solid rgba(29, 29, 27, 0.08);
	border-radius: 30px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 235, 0.98)),
		radial-gradient(circle at 18% 22%, rgba(242, 211, 71, 0.15), transparent 32%);
	box-shadow: 0 22px 42px rgba(29, 29, 27, 0.08);
	isolation: isolate;
}

.regiopole-detail__regional-banner.has-aside {
	grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.72fr);
	align-items: center;
}

.regiopole-detail__regional-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(242, 211, 71, 0.08), transparent 32%);
	pointer-events: none;
}

.regiopole-detail__regional-copy,
.regiopole-detail__regional-aside {
	position: relative;
	z-index: 1;
}

.regiopole-detail__regional-kicker {
	margin: 0 0 12px;
	color: var(--color-gold);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.regiopole-detail__regional-title {
	margin: 0 0 16px;
	color: var(--color-ink);
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.regiopole-detail__regional-text {
	max-width: 48rem;
	margin: 0;
	color: rgba(29, 29, 27, 0.8);
	font-size: 1.02rem;
	line-height: 1.6;
}

.regiopole-detail__regional-aside {
	display: grid;
	gap: 10px;
	padding: 24px 24px 22px;
	align-self: stretch;
	align-content: center;
	border-radius: 24px;
	background: linear-gradient(145deg, #f2a23a, #d76322);
	box-shadow: 0 16px 28px rgba(197, 85, 38, 0.24);
	color: #fff;
}

.regiopole-detail__regional-aside strong,
.regiopole-detail__regional-aside span {
	display: block;
}

.regiopole-detail__regional-aside strong {
	font-size: clamp(2.4rem, 4vw, 4.2rem);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: -0.05em;
}

.regiopole-detail__regional-aside span {
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.regiopole-detail__regional-rings {
	position: absolute;
	right: -8%;
	bottom: -26%;
	width: min(520px, 48%);
	opacity: 0.18;
	pointer-events: none;
	z-index: 0;
}

.regiopole-detail__project-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
	grid-template-rows: minmax(210px, auto) minmax(150px, auto) minmax(120px, auto);
	gap: 16px;
}

.regiopole-detail__project-grid--news {
	margin: 0;
}

.regiopole-detail__project-grid--pattern-b {
	grid-template-columns: minmax(0, 1.18fr) minmax(0, 1.02fr);
	grid-template-rows: minmax(180px, auto) minmax(180px, auto) minmax(126px, auto);
}

.regiopole-detail__project-grid--pattern-b .regiopole-detail__project-card--accent {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.regiopole-detail__project-grid--pattern-b .regiopole-detail__project-card--stone {
	grid-column: 2;
	grid-row: 1;
}

.regiopole-detail__project-grid--pattern-b .regiopole-detail__project-card--primary {
	grid-column: 2;
	grid-row: 2;
}

.regiopole-detail__project-grid--pattern-b .regiopole-detail__project-card--light {
	grid-column: 1;
	grid-row: 3;
}

.regiopole-detail__project-grid--pattern-b .regiopole-detail__project-card--sun {
	grid-column: 2;
	grid-row: 3;
}

.regiopole-detail__project-grid--pattern-c {
	grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.36fr);
	grid-template-rows: minmax(160px, auto) minmax(162px, auto) minmax(138px, auto);
}

.regiopole-detail__project-grid--pattern-c .regiopole-detail__project-card--sun {
	grid-column: 1;
	grid-row: 1;
}

.regiopole-detail__project-grid--pattern-c .regiopole-detail__project-card--accent {
	grid-column: 1;
	grid-row: 2;
}

.regiopole-detail__project-grid--pattern-c .regiopole-detail__project-card--stone {
	grid-column: 1;
	grid-row: 3;
}

.regiopole-detail__project-grid--pattern-c .regiopole-detail__project-card--primary {
	grid-column: 2;
	grid-row: 1 / span 2;
}

.regiopole-detail__project-grid--pattern-c .regiopole-detail__project-card--light {
	grid-column: 2;
	grid-row: 3;
}

.regiopole-project-carousel {
	display: grid;
	gap: 22px;
}

.regiopole-project-carousel__viewport {
	overflow-x: auto;
	scroll-snap-type: none;
	scroll-behavior: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	touch-action: pan-x pan-y;
	cursor: grab;
}

.regiopole-project-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.regiopole-project-carousel__viewport.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	user-select: none;
}

.regiopole-project-carousel__track {
	display: flex;
	gap: 22px;
}

.regiopole-project-carousel__page {
	flex: 0 0 100%;
}

.regiopole-project-carousel__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.regiopole-project-carousel__arrow {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-gold);
	font-size: 0.84rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.regiopole-project-carousel__arrow[disabled] {
	opacity: 0.3;
	pointer-events: none;
}

.regiopole-project-carousel__pagination {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1 1 auto;
	justify-content: center;
}

.regiopole-project-carousel__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(29, 29, 27, 0.18);
	transition: transform var(--transition), background-color var(--transition);
}

.regiopole-project-carousel__dot.is-active {
	background: var(--color-gold);
	transform: scale(1.15);
}

.regiopole-project-carousel__counter {
	color: rgba(29, 29, 27, 0.58);
	font-size: 0.84rem;
	font-weight: 700;
}

.regiopole-detail__project-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 100%;
	padding: 24px 26px 22px;
	border-radius: 18px;
	box-shadow: 0 14px 28px rgba(29, 29, 27, 0.08);
}

.regiopole-detail__project-card--primary {
	grid-column: 1;
	grid-row: 1 / span 2;
	background: #1d1d1b;
	color: #fff;
}

.regiopole-detail__project-card--accent {
	grid-column: 2;
	grid-row: 1;
	background: #f28c00;
	color: #fff;
}

.regiopole-detail__project-card--light {
	grid-column: 2;
	grid-row: 2;
	background: #f7f4ee;
	color: var(--color-ink);
}

.regiopole-detail__project-card--sun {
	grid-column: 1;
	grid-row: 3;
	background: #f8d100;
	color: var(--color-ink);
}

.regiopole-detail__project-card--stone {
	grid-column: 2;
	grid-row: 3;
	background: #cbc4c0;
	color: var(--color-ink);
}

.regiopole-detail__project-category {
	margin-bottom: 12px;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.regiopole-detail__project-card h3 {
	margin-bottom: 14px;
	font-size: clamp(1.45rem, 2.5vw, 1.65rem);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.regiopole-detail__project-card--primary h3 {
	max-width: 12ch;
}

.regiopole-detail__project-text {
	margin-bottom: 0;
	max-width: 24rem;
	color: inherit;
	opacity: 0.82;
	font-size: 0.96rem;
	line-height: 1.38;
}

.regiopole-detail__project-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding-top: 28px;
	font-size: 0.84rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.regiopole-detail__project-empty {
	padding: 20px 2px 4px;
	color: rgba(29, 29, 27, 0.68);
}

.regiopole-detail__project-link::after {
	content: "→";
	font-size: 1rem;
	line-height: 1;
}

.regiopole-detail__section--materials {
	padding-bottom: 92px;
}

.regiopole-detail__materials-panel {
	padding: 28px;
	border-radius: 18px;
	background: #f7f4ee;
	color: var(--color-ink);
	box-shadow: 0 16px 34px rgba(29, 29, 27, 0.08);
}

.regiopole-detail__materials-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(29, 29, 27, 0.1);
}

.regiopole-detail__materials-header h2 {
	margin-bottom: 0;
	font-size: clamp(1.8rem, 4vw, 2rem);
	text-transform: uppercase;
}

.regiopole-detail__materials-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.regiopole-detail__materials-link::after {
	content: "↓";
	font-size: 1rem;
}

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

.regiopole-detail__material-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 16px 13px;
	border: 1px solid rgba(29, 29, 27, 0.08);
	border-radius: 10px;
	background: #fff;
	box-shadow: none;
}

.regiopole-detail__material-body {
	min-width: 0;
}

.regiopole-detail__material-body h3 {
	margin-bottom: 8px;
	font-size: 1.02rem;
	line-height: 1.16;
}

.regiopole-detail__material-body p {
	margin-bottom: 0;
	color: rgba(29, 29, 27, 0.58);
	font-size: 0.88rem;
}

.regiopole-detail__material-meta {
	margin-bottom: 8px !important;
	color: var(--color-gold) !important;
	font-size: 0.74rem !important;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.regiopole-detail__material-action {
	flex: 0 0 auto;
	padding: 8px;
	border-radius: 999px;
	background: transparent;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.regiopole-detail__material-action.is-disabled {
	opacity: 0.36;
	pointer-events: none;
}

.regiopole-detail__materials-empty {
	padding: 20px 2px 4px;
	color: rgba(29, 29, 27, 0.68);
}

.regiopole-detail__backlink:focus-visible,
.regiopole-detail__materials-link:focus-visible,
.regiopole-detail__material-action:focus-visible,
.regiopole-detail__project-link:focus-visible,
.regiopole-quote-slider__controls button:focus-visible,
.regiopole-project-carousel__arrow:focus-visible,
.regiopole-project-carousel__dot:focus-visible {
	outline: 2px solid var(--color-sun);
	outline-offset: 4px;
}

html[data-theme="dark"] .section--light {
	background: #11100f;
	color: #fff;
}

html[data-theme="dark"] .archive-hero {
	background:
		radial-gradient(circle at 80% 18%, rgba(242, 211, 71, 0.12), transparent 26%),
		radial-gradient(circle at 20% 12%, rgba(228, 145, 52, 0.1), transparent 24%),
		linear-gradient(180deg, #141210 0%, #0f0e0d 100%);
}

html[data-theme="dark"] .archive-hero__art {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
	box-shadow: 0 26px 58px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .archive-hero__art img,
html[data-theme="dark"] .content-card__image {
	filter: saturate(0.94) brightness(0.88);
}

html[data-theme="dark"] .about-hero__copy p:last-child,
html[data-theme="dark"] .about-prose p,
html[data-theme="dark"] .about-hero__fact-card span,
html[data-theme="dark"] .about-potential__placeholder span {
	color: rgba(255, 255, 255, 0.74);
}

html[data-theme="dark"] .about-network-feature__map,
html[data-theme="dark"] .about-hero__fact-card,
html[data-theme="dark"] .about-potential__media,
html[data-theme="dark"] .about-potential__placeholder {
	background: #191715;
	color: #fff;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .about-network-feature__map {
	background: linear-gradient(180deg, rgba(25, 23, 21, 0.98), rgba(17, 16, 15, 0.98));
}

html[data-theme="dark"] .about-potential__placeholder {
	background:
		radial-gradient(circle at 18% 18%, rgba(242, 211, 71, 0.12), transparent 28%),
		linear-gradient(160deg, rgba(25, 23, 21, 0.98), rgba(17, 16, 15, 0.98));
}

html[data-theme="dark"] .about-potential__placeholder img {
	filter: saturate(0) brightness(1.2);
	opacity: 0.22;
}

html[data-theme="dark"] .archive-hero p,
html[data-theme="dark"] .hero-copy__text,
html[data-theme="dark"] .section-text,
html[data-theme="dark"] .prose,
html[data-theme="dark"] .prose li,
html[data-theme="dark"] .detail-copy cite,
html[data-theme="dark"] .content-card__meta,
html[data-theme="dark"] .location-card__meta,
html[data-theme="dark"] .download-row__body .content-card__meta,
html[data-theme="dark"] .archive-empty,
html[data-theme="dark"] .archive-app__status span {
	color: rgba(255, 255, 255, 0.7);
}

html[data-theme="dark"] .prose a,
html[data-theme="dark"] .content-card a,
html[data-theme="dark"] .project-card a,
html[data-theme="dark"] .download-row__link {
	color: var(--color-sun);
}

html[data-theme="dark"] .goal-list,
html[data-theme="dark"] .data-chart,
html[data-theme="dark"] .detail-stats,
html[data-theme="dark"] .content-card--light,
html[data-theme="dark"] .location-card,
html[data-theme="dark"] .download-row--light,
html[data-theme="dark"] .archive-empty,
html[data-theme="dark"] .archive-pagination__link {
	background: #191715;
	color: #fff;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .location-card,
html[data-theme="dark"] .download-row--light,
html[data-theme="dark"] .archive-empty,
html[data-theme="dark"] .archive-pagination__link,
html[data-theme="dark"] .content-card--light {
	border: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .location-card__media {
	background:
		linear-gradient(160deg, rgba(242, 211, 71, 0.12), rgba(197, 85, 38, 0.12)),
		#151311;
}

html[data-theme="dark"] .location-card__media.is-empty img {
	opacity: 0.24;
}

html[data-theme="dark"] .location-card__meta-item {
	border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .location-card__excerpt,
html[data-theme="dark"] .location-card__meta-copy span,
html[data-theme="dark"] .home-feature__meta-copy span {
	color: rgba(255, 255, 255, 0.64);
}

html[data-theme="dark"] .location-card__meta-copy strong,
html[data-theme="dark"] .home-feature__meta-copy strong {
	color: var(--color-gold);
}

html[data-theme="dark"] .download-row__icon,
html[data-theme="dark"] .download-row--light .download-row__icon {
	background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .download-row,
html[data-theme="dark"] .download-row--light {
	background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .download-row:hover,
html[data-theme="dark"] .download-row:focus-within,
html[data-theme="dark"] .download-row--light:hover,
html[data-theme="dark"] .download-row--light:focus-within {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .download-row__body p {
	color: rgba(255, 255, 255, 0.68);
}

html[data-theme="dark"] .download-row__link {
	color: rgba(255, 255, 255, 0.58);
}

html[data-theme="dark"] .download-row:hover .download-row__link,
html[data-theme="dark"] .download-row:focus-within .download-row__link,
html[data-theme="dark"] .download-row--light:hover .download-row__link,
html[data-theme="dark"] .download-row--light:focus-within .download-row__link {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

html[data-theme="dark"] .archive-app__form {
	background: #191715;
	color: #fff;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .archive-app__search input::placeholder {
	color: rgba(255, 255, 255, 0.42);
}

html[data-theme="dark"] .archive-filter__label {
	color: rgba(255, 255, 255, 0.82);
}

html[data-theme="dark"] .archive-filter__select option {
	background: #191715;
	color: #fff;
}

html[data-theme="dark"] .archive-pagination__link.is-active {
	border-color: transparent;
}

html[data-theme="dark"] .regiopole-detail {
	background: #11100f;
	color: #fff;
}

html[data-theme="dark"] .regiopole-detail__hero {
	background:
		radial-gradient(circle at 84% 16%, rgba(242, 211, 71, 0.12), transparent 24%),
		radial-gradient(circle at 18% 8%, rgba(228, 145, 52, 0.08), transparent 20%);
}

html[data-theme="dark"] .regiopole-detail__breadcrumb ol,
html[data-theme="dark"] .regiopole-detail__project-empty,
html[data-theme="dark"] .regiopole-detail__materials-empty {
	color: rgba(255, 255, 255, 0.5);
}

html[data-theme="dark"] .regiopole-detail__breadcrumb li + li::before {
	color: rgba(255, 255, 255, 0.18);
}

html[data-theme="dark"] .regiopole-detail__hero-copy h1,
html[data-theme="dark"] .regiopole-detail__copy-title,
html[data-theme="dark"] .regiopole-detail__section-heading h2,
html[data-theme="dark"] .regiopole-detail__materials-header h2 {
	color: #fff;
}

html[data-theme="dark"] .regiopole-detail__copy-title::after {
	background: #fff;
}

html[data-theme="dark"] .regiopole-detail__meta-icon,
html[data-theme="dark"] .regiopole-detail__highlight-icon,
html[data-theme="dark"] .home-feature__meta-icon,
html[data-theme="dark"] .location-card__meta-icon {
	filter: brightness(0) invert(1);
}

html[data-theme="dark"] .regiopole-detail__prose,
html[data-theme="dark"] .regiopole-detail__copy-card p,
html[data-theme="dark"] .regiopole-detail__highlight-card p,
html[data-theme="dark"] .regiopole-detail__material-body p {
	color: rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .regiopole-detail__fact-card,
html[data-theme="dark"] .regiopole-detail__highlight-stat,
html[data-theme="dark"] .regiopole-detail__materials-panel,
html[data-theme="dark"] .regiopole-detail__regional-banner,
html[data-theme="dark"] .regiopole-quote-slide,
html[data-theme="dark"] .regiopole-detail__project-card--light,
html[data-theme="dark"] .regiopole-detail__project-card--stone {
	background: #191715;
	color: #fff;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .regiopole-detail__fact-card small,
html[data-theme="dark"] .regiopole-quote-slide footer small,
html[data-theme="dark"] .regiopole-project-carousel__counter {
	color: rgba(255, 255, 255, 0.54);
}

html[data-theme="dark"] .regiopole-detail__fact-card span,
html[data-theme="dark"] .regiopole-detail__highlight-stat span {
	color: rgba(255, 255, 255, 0.42);
}

html[data-theme="dark"] .regiopole-detail__regional-banner {
	border-color: rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(145deg, rgba(25, 23, 21, 0.98), rgba(19, 18, 16, 0.98)),
		radial-gradient(circle at 22% 26%, rgba(242, 211, 71, 0.12), transparent 34%);
}

html[data-theme="dark"] .regiopole-detail__regional-banner::before {
	background: linear-gradient(90deg, rgba(242, 211, 71, 0.08), transparent 34%);
}

html[data-theme="dark"] .regiopole-detail__highlight-stat {
	border-left-color: rgba(228, 145, 52, 0.72);
}

html[data-theme="dark"] .regiopole-detail__regional-title {
	color: #fff;
}

html[data-theme="dark"] .regiopole-detail__regional-text {
	color: rgba(255, 255, 255, 0.76);
}

html[data-theme="dark"] .regiopole-detail__regional-aside {
	background: linear-gradient(145deg, #f2a23a, #d76322);
	color: #fff;
}

html[data-theme="dark"] .regiopole-detail__visual-image,
html[data-theme="dark"] .regiopole-detail__visual-fallback {
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .regiopole-detail__visual-fallback {
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		linear-gradient(135deg, #2f2b28, #11100f 78%);
}

html[data-theme="dark"] .regiopole-detail__visual-fallback img {
	filter: saturate(0) brightness(1.15);
	opacity: 0.12;
}

html[data-theme="dark"] .regiopole-quote-slide__portrait {
	background: transparent;
}

html[data-theme="dark"] .regiopole-quote-slide__mark {
	color: rgba(242, 211, 71, 0.14);
}

html[data-theme="dark"] .regiopole-quote-slide__toggle {
	color: var(--color-sun);
}

html[data-theme="dark"] .regiopole-quote-slider__controls button {
	border-color: rgba(255, 255, 255, 0.14);
	color: var(--color-sun);
}

html[data-theme="dark"] .regiopole-project-carousel__dot {
	background: rgba(255, 255, 255, 0.2);
}

html[data-theme="dark"] .regiopole-project-carousel__dot.is-active {
	background: var(--color-sun);
}

html[data-theme="dark"] .regiopole-detail__project-card {
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .regiopole-detail__project-card--primary {
	background: #181614;
}

html[data-theme="dark"] .regiopole-detail__project-card--sun {
	background: linear-gradient(180deg, #d1af12 0%, #b98d00 100%);
	color: #1d1d1b;
}

html[data-theme="dark"] .regiopole-detail__project-card--sun .regiopole-detail__project-text {
	color: rgba(29, 29, 27, 0.82);
}

html[data-theme="dark"] .regiopole-detail__materials-header {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .regiopole-detail__material-row {
	border-color: rgba(255, 255, 255, 0.08);
	background: #11100f;
}

@media (max-width: 1120px) {
	.regiopole-detail__top-grid,
	.regiopole-detail__highlights-grid,
	.regiopole-detail__materials-grid {
		grid-template-columns: 1fr;
	}

	.regiopole-detail__regional-banner,
	.regiopole-detail__regional-banner.has-aside {
		grid-template-columns: 1fr;
	}

	.regiopole-detail__project-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.regiopole-detail__project-card--primary,
	.regiopole-detail__project-card--accent,
	.regiopole-detail__project-card--light,
	.regiopole-detail__project-card--sun,
	.regiopole-detail__project-card--stone {
		grid-column: auto;
		grid-row: auto;
		min-height: 180px;
	}
}

@media (max-width: 900px) {
	.regiopole-detail__meta-strip {
		gap: 14px 18px;
	}

	.regiopole-quote-slide {
		grid-template-columns: 1fr;
		padding: 0 26px 26px;
	}

	.regiopole-quote-slide__portrait {
		min-height: 220px;
	}

	.regiopole-quote-slide__content {
		padding: 22px 0 0;
	}

	.regiopole-detail__regional-banner {
		padding: 28px 24px;
		border-radius: 26px;
	}

	.regiopole-detail__regional-aside {
		padding: 22px 20px 20px;
	}

	.regiopole-detail__regional-rings {
		right: -18%;
		bottom: -18%;
		width: min(520px, 76%);
	}

	.regiopole-quote-slide__mark {
		left: -8px;
		top: -12px;
		font-size: 5.8rem;
	}

	.regiopole-detail__materials-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.regiopole-project-carousel__footer {
		flex-wrap: wrap;
		justify-content: center;
	}

	.regiopole-project-carousel__counter {
		order: 3;
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 680px) {
	.regiopole-detail__hero {
		padding: 42px 0 64px;
	}

	.regiopole-detail__hero-copy h1 {
		font-size: clamp(2.8rem, 14vw, 4.4rem);
	}

	.regiopole-detail__facts-grid {
		grid-template-columns: 1fr;
	}

	.regiopole-detail__meta-strip {
		flex-direction: column;
		align-items: flex-start;
	}

	.regiopole-detail__visual-fallback {
		padding: 24px;
	}

	.regiopole-quote-slide blockquote {
		font-size: clamp(1.5rem, 7vw, 2.2rem);
	}

	.regiopole-project-carousel__footer {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.regiopole-project-carousel__pagination,
	.regiopole-project-carousel__counter {
		grid-column: 1 / -1;
	}

	.regiopole-detail__material-row {
		flex-direction: column;
		align-items: flex-start;
	}
}
