body {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--text);
	background-color: var(--surface);
}

body.is-locked {
	overflow: hidden;
}

::selection {
	color: var(--text-invert);
	background-color: var(--brand-blue);
}

:focus-visible {
	outline: 2px solid var(--brand-blue);
	outline-offset: 3px;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	clip-path: inset(50%);
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.section {
	padding: var(--section-gap) 0;
}

.section--grey {
	background-color: var(--surface-2);
}

.section--dark {
	color: var(--text-invert);
	background-color: var(--brand-dark);
}

.section__head {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 780px;
	margin-bottom: clamp(28px, 3.4vw, 56px);
}

.section__label {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brand-orange);
}

.title {
	font-weight: 700;
	font-size: clamp(26px, 3.2vw, 46px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}

.subtitle {
	font-size: clamp(15px, 1.2vw, 19px);
	color: var(--text-muted);
}

.section--dark .subtitle {
	color: var(--text-invert-muted);
}

.text {
	color: var(--text-muted);
}

.accent {
	color: var(--brand-orange);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 56px;
	padding: 8px 28px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	border-radius: var(--radius-full);
	transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:active {
	transform: translateY(1px);
}

.btn__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	margin-left: -14px;
	border-radius: 50%;
}

.btn--blue {
	color: var(--text-invert);
	background-color: var(--brand-blue);
}

.btn--blue:hover {
	background-color: var(--brand-blue-dark);
}

.btn--blue .btn__icon {
	background-color: rgba(253, 252, 250, 0.18);
}

.btn--orange {
	color: var(--text-invert);
	background-color: var(--brand-orange);
}

.btn--orange:hover {
	background-color: var(--brand-orange-light);
}

.btn--light {
	color: var(--text);
	background-color: rgba(240, 242, 250, 0.92);
	backdrop-filter: blur(6px);
}

.btn--light:hover {
	background-color: var(--surface);
}

.btn--outline {
	color: var(--text);
	border: 1px solid var(--border);
}

.btn--outline:hover {
	color: var(--brand-blue);
	border-color: var(--brand-blue);
}

.btn--consult {
	color: var(--text-invert);
	background-color: rgba(253, 252, 250, 0.06);
	border: 1px solid var(--border-invert);
}

.btn--consult:hover {
	background-color: rgba(253, 252, 250, 0.12);
}

.btn--consult .btn__icon {
	background-color: var(--brand-blue);
}

.btn--wide {
	width: 100%;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 60;
	width: 100%;
	color: var(--text-invert);
	background-color: var(--brand-dark);
}

.header__inner {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2.4vw, 48px);
	min-height: var(--header-height);
}

.header__logo {
	flex-shrink: 0;
}

.header__logo img {
	width: clamp(92px, 8vw, 121px);
}

.nav {
	flex-grow: 1;
}

.nav__list {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.8vw, 34px);
}

.nav__link {
	position: relative;
	font-size: 15px;
	color: var(--text-invert);
	transition: color var(--transition);
}

.nav__link:hover {
	color: var(--brand-orange-light);
}

.nav__link.is-active {
	color: var(--brand-orange);
}

.nav__extra {
	display: none;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.4vw, 24px);
	margin-left: auto;
}

.header__note {
	max-width: 260px;
	font-size: 13px;
	line-height: 1.4;
	text-align: right;
	color: var(--text-invert-muted);
}

.header__note a {
	color: var(--brand-blue-light);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color var(--transition);
}

.header__note a:hover {
	color: var(--brand-orange);
}

.header__consult {
	min-height: 50px;
	padding: 6px 26px 6px 22px;
	font-size: 15px;
}

.header__ticket,
.header__call {
	display: none;
}

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background-color: var(--brand-blue);
	border-radius: 12px;
}

.burger span {
	width: 18px;
	height: 2px;
	background-color: var(--text-invert);
	border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}

.burger.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
	opacity: 0;
}

.burger.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(560px, 84vh, 860px);
	padding: calc(var(--header-height) + clamp(40px, 6vw, 90px)) 0 clamp(48px, 6vw, 96px);
	color: var(--text-invert);
	background-color: #1b2a9e;
	background-image: url("../img/hero-bg.jpg");
	background-position: center;
	background-size: cover;
	overflow: hidden;
	isolation: isolate;
}

.hero__building {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	width: auto;
	height: 100%;
	max-width: 58%;
	object-fit: contain;
	object-position: bottom right;
	-webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 14%);
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 14%);
	pointer-events: none;
}

.hero__container {
	position: relative;
	z-index: 1;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(18px, 2vw, 28px);
	max-width: 760px;
}

.hero__badge {
	padding: 12px 24px;
	font-size: clamp(15px, 1.2vw, 18px);
	font-weight: 700;
	color: var(--text-invert);
	background-color: var(--brand-orange);
	border-radius: var(--radius-full);
}

.hero__title {
	font-weight: 700;
	font-size: clamp(30px, 4.1vw, 60px);
	line-height: 1;
	letter-spacing: -0.015em;
	text-transform: uppercase;
}

.hero__lead {
	display: flex;
	flex-direction: column;
	font-weight: 700;
	font-size: clamp(20px, 2.2vw, 31px);
	line-height: 1.2;
}

.hero__lead span {
	color: var(--brand-orange);
}

.hero__facts {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: clamp(14px, 1vw, 16px);
	line-height: 1.35;
	color: var(--text-invert);
}

.hero__facts img {
	flex-shrink: 0;
	width: clamp(34px, 3vw, 42px);
}

.hero__actions {
	display: flex;
	align-items: center;
	max-width: 100%;
}

.hero__hint {
	padding: 12px 60px 12px 24px;
	margin-right: -44px;
	font-size: 13px;
	line-height: 1.35;
	color: var(--text-invert-muted);
	background-color: rgba(20, 20, 22, 0.72);
	border-radius: var(--radius-full);
}

.hero__actions .btn {
	position: relative;
	z-index: 1;
}

.info {
	position: relative;
	color: var(--text);
	background: linear-gradient(90deg, #eceef2 0%, #e2e6f1 38%, #3a48c9 76%, #2348d7 100%);
}

.info__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"place timer"
		"apply timer";
	gap: clamp(20px, 2.4vw, 34px) clamp(24px, 4vw, 80px);
	align-items: center;
	padding: clamp(24px, 3vw, 42px) 0;
}

.info__place {
	grid-area: place;
	display: flex;
	align-items: center;
	gap: 16px;
}

.info__pin {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
}

.info__place-title {
	font-size: clamp(18px, 1.5vw, 22px);
	font-weight: 700;
	color: var(--brand-orange);
}

.info__place-text {
	font-size: 15px;
	color: var(--text);
}

.info__apply {
	grid-area: apply;
	display: flex;
	align-items: center;
	gap: 24px;
}

.info__apply .btn {
	flex-shrink: 0;
	min-width: 300px;
}

.info__apply-text {
	max-width: 280px;
	font-size: 14px;
	line-height: 1.35;
	color: var(--text-muted);
}

.info__apply-text span {
	color: var(--brand-blue);
}

.info__timer {
	grid-area: timer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: var(--text-invert);
}

.info__timer-label {
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(253, 252, 250, 0.82);
}

.timer {
	display: grid;
	grid-template-columns: repeat(4, minmax(64px, 1fr));
}

.timer__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 0 clamp(10px, 1.4vw, 22px);
	border-left: 1px solid rgba(253, 252, 250, 0.28);
}

.timer__item:first-child {
	border-left: none;
}

.timer__value {
	font-size: clamp(26px, 2.4vw, 36px);
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.timer__label {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(253, 252, 250, 0.72);
}

.grid {
	display: grid;
	gap: clamp(16px, 1.6vw, 24px);
}

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

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

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

.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 2vw, 32px);
}

.stats__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: clamp(20px, 2vw, 32px);
	background-color: var(--surface-2);
	border-radius: var(--radius-l);
}

.stats__value {
	font-size: clamp(30px, 3.2vw, 48px);
	font-weight: 700;
	line-height: 1;
	color: var(--brand-blue);
}

.stats__label {
	font-size: 15px;
	color: var(--text-muted);
}

.card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: clamp(20px, 2.2vw, 32px);
	background-color: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-l);
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card:hover {
	border-color: var(--brand-blue);
	box-shadow: 0 18px 40px rgba(35, 72, 215, 0.12);
	transform: translateY(-4px);
}

.section--grey .card {
	background-color: var(--surface);
	border-color: transparent;
}

.card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	font-size: 18px;
	font-weight: 700;
	color: var(--brand-blue);
	background-color: var(--surface-3);
	border-radius: var(--radius-m);
}

.card__title {
	font-size: clamp(18px, 1.5vw, 21px);
	font-weight: 700;
	line-height: 1.25;
}

.card__text {
	color: var(--text-muted);
}

.speaker__photo {
	aspect-ratio: 3 / 4;
	background: linear-gradient(160deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
	border-radius: var(--radius-m);
	opacity: 0.85;
}

.speaker__name {
	font-size: 19px;
	font-weight: 700;
}

.speaker__role {
	font-size: 15px;
	color: var(--brand-blue);
}

.program__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: clamp(20px, 2.4vw, 36px);
}

.program__tab {
	min-height: 46px;
	padding: 0 24px;
	font-size: 15px;
	color: var(--text);
	background-color: var(--surface-2);
	border-radius: var(--radius-full);
	transition: color var(--transition), background-color var(--transition);
}

.program__tab.is-active {
	color: var(--text-invert);
	background-color: var(--brand-blue);
}

.program__list {
	display: none;
}

.program__list.is-active {
	display: block;
}

.program__item {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: clamp(12px, 2vw, 32px);
	padding: clamp(18px, 2vw, 28px) 0;
	border-top: 1px solid var(--border);
}

.program__item:last-child {
	border-bottom: 1px solid var(--border);
}

.program__time {
	font-size: 17px;
	font-weight: 500;
	color: var(--brand-blue);
}

.program__title {
	margin-bottom: 6px;
	font-size: clamp(17px, 1.4vw, 20px);
	font-weight: 700;
}

.tariff {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: clamp(24px, 2.4vw, 36px);
	background-color: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-l);
}

.tariff--accent {
	color: var(--text-invert);
	background: linear-gradient(150deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
	border-color: transparent;
}

.tariff__name {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

.tariff__price {
	font-size: clamp(28px, 2.6vw, 38px);
	font-weight: 700;
	line-height: 1;
	color: var(--brand-blue);
}

.tariff--accent .tariff__price {
	color: var(--text-invert);
}

.tariff__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-grow: 1;
	font-size: 15px;
	color: var(--text-muted);
}

.tariff--accent .tariff__list {
	color: var(--text-invert-muted);
}

.tariff__list li {
	position: relative;
	padding-left: 24px;
}

.tariff__list li::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 10px;
	height: 10px;
	background-color: var(--brand-orange);
	border-radius: 50%;
}

.tariff--accent .btn--blue {
	color: var(--brand-blue);
	background-color: var(--text-invert);
}

.tariff--accent .btn--blue .btn__icon {
	background-color: rgba(35, 72, 215, 0.16);
}

.accordion__item {
	border-bottom: 1px solid var(--border);
}

.accordion__item:first-child {
	border-top: 1px solid var(--border);
}

.accordion__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: clamp(18px, 2vw, 26px) 0;
	font-size: clamp(16px, 1.5vw, 20px);
	font-weight: 700;
	line-height: 1.3;
	text-align: left;
	transition: color var(--transition);
}

.accordion__btn:hover {
	color: var(--brand-blue);
}

.accordion__icon {
	position: relative;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.accordion__icon::before,
.accordion__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--brand-blue);
	transform: translateY(-50%);
	transition: transform var(--transition);
}

.accordion__icon::after {
	transform: translateY(-50%) rotate(90deg);
}

.accordion__item.is-open .accordion__icon::after {
	transform: translateY(-50%) rotate(0deg);
}

.accordion__body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows var(--transition);
}

.accordion__item.is-open .accordion__body {
	grid-template-rows: 1fr;
}

.accordion__inner {
	overflow: hidden;
}

.accordion__text {
	max-width: 900px;
	padding-bottom: clamp(18px, 2vw, 26px);
	color: var(--text-muted);
}

.registration {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: clamp(24px, 3vw, 64px);
	align-items: center;
}

.form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: clamp(20px, 2.6vw, 40px);
	background-color: var(--surface);
	border-radius: var(--radius-l);
	box-shadow: 0 24px 60px rgba(20, 20, 22, 0.1);
}

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

.field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.field__label {
	font-size: 14px;
	color: var(--text-muted);
}

.input {
	width: 100%;
	min-height: 54px;
	padding: 0 20px;
	color: var(--text);
	background-color: var(--surface-2);
	border: 1px solid transparent;
	border-radius: var(--radius-s);
	transition: border-color var(--transition), background-color var(--transition);
}

textarea.input {
	min-height: 120px;
	padding: 15px 20px;
	resize: vertical;
}

.input::placeholder {
	color: rgba(20, 20, 22, 0.4);
}

.input:focus {
	outline: none;
	background-color: var(--surface);
	border-color: var(--brand-blue);
}

.input:user-invalid {
	border-color: var(--brand-orange);
}

.checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--text-muted);
	cursor: pointer;
}

.checkbox__input {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--brand-blue);
	cursor: pointer;
}

.checkbox a {
	color: var(--brand-blue);
	text-decoration: underline;
}

.form__note {
	min-height: 20px;
	font-size: 14px;
	color: var(--brand-blue);
}

.cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(20px, 3vw, 48px);
	padding: clamp(26px, 3.4vw, 56px);
	color: var(--text-invert);
	background: linear-gradient(110deg, var(--brand-blue-dark) 0%, var(--brand-blue) 55%, var(--brand-orange) 140%);
	border-radius: var(--radius-l);
}

.footer {
	padding: clamp(36px, 3.65vw, 70px) 0 clamp(32px, 2.6vw, 50px);
	color: var(--text-invert);
	background-color: #1e1e20;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect x='5' y='5' width='86' height='86' rx='18' fill='%23fdfcfa' fill-opacity='0.012'/%3E%3C/svg%3E");
}

.footer__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.footer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(20px, 2.6vw, 50px);
}

.footer__logo img {
	width: clamp(120px, 8.85vw, 170px);
}

.footer__socials {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.6vw, 50px);
}

.footer__social {
	display: inline-flex;
	align-items: center;
	gap: clamp(8px, 0.83vw, 16px);
	font-size: clamp(14px, 1.15vw, 22px);
	line-height: 1.2;
	color: var(--text-invert);
	transition: color var(--transition);
}

.footer__social:hover {
	color: var(--brand-blue-light);
}

.footer__social-icon svg {
	width: clamp(22px, 1.51vw, 29px);
	height: auto;
}

.footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(24px, 2.6vw, 50px);
	margin-top: clamp(28px, 3.13vw, 60px);
}

.footer__contacts {
	display: flex;
	flex-direction: column;
	gap: clamp(16px, 1.98vw, 38px);
}

.footer__contact {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.25vw, 24px);
	font-size: clamp(14px, 1.15vw, 22px);
	line-height: 1.25;
}

.footer__contact a {
	transition: color var(--transition);
}

.footer__contact a:hover {
	color: var(--brand-blue-light);
}

.footer__icon {
	display: flex;
	flex-shrink: 0;
}

.footer__icon svg {
	width: clamp(20px, 1.35vw, 26px);
	height: auto;
}

.footer__nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 1.56vw, 30px);
}

.footer__list {
	display: flex;
	flex-direction: column;
	gap: clamp(16px, 1.98vw, 38px);
}

.footer__link {
	font-size: clamp(14px, 1.15vw, 22px);
	line-height: 1.25;
	color: var(--text-invert);
	transition: color var(--transition);
}

.footer__link:hover {
	color: var(--brand-orange);
}

.footer__ask-title {
	font-weight: 700;
	font-size: clamp(19px, 1.56vw, 30px);
	line-height: 1.2;
	color: var(--text-invert);
}

.footer__ask-title span {
	color: var(--brand-orange);
}

.footer__ask-text {
	margin-top: clamp(12px, 1.04vw, 20px);
	font-size: clamp(14px, 1.04vw, 20px);
	line-height: 1.45;
	color: var(--text-invert);
}

.footer__form {
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 0.83vw, 16px);
}

.footer__label {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 clamp(14px, 1.25vw, 24px);
	background-color: rgba(253, 252, 250, 0.03);
	border: 1px solid var(--brand-orange);
	border-radius: clamp(8px, 0.63vw, 12px);
	transition: border-color var(--transition), background-color var(--transition);
}

.footer__label:focus-within {
	background-color: rgba(253, 252, 250, 0.07);
	border-color: var(--brand-orange-light);
}

.footer__flag {
	display: flex;
	flex-shrink: 0;
}

.footer__flag svg {
	width: clamp(20px, 1.25vw, 24px);
	height: auto;
	border-radius: 2px;
}

.footer__code {
	flex-shrink: 0;
	font-size: clamp(15px, 1.15vw, 22px);
	color: var(--text-invert);
}

.footer__input {
	width: 100%;
	min-height: clamp(48px, 3.44vw, 66px);
	font-size: clamp(15px, 1.15vw, 22px);
	color: var(--text-invert);
	background: none;
	border: none;
	outline: none;
}

.footer__input::placeholder {
	color: rgba(253, 252, 250, 0.45);
}

.footer__input--phone {
	padding-left: 0;
}

.footer__btn {
	min-height: clamp(50px, 3.65vw, 70px);
	padding: 8px 24px;
	font-weight: 500;
	font-size: clamp(15px, 1.15vw, 22px);
	line-height: 1.2;
	color: var(--text-invert);
	background-color: var(--brand-orange);
	border-radius: clamp(8px, 0.63vw, 12px);
	transition: background-color var(--transition), transform var(--transition);
}

.footer__btn:hover {
	background-color: var(--brand-orange-light);
}

.footer__btn:active {
	transform: translateY(1px);
}

.footer__note {
	min-height: 18px;
	font-size: clamp(12px, 0.83vw, 16px);
	line-height: 1.35;
	color: var(--brand-orange);
}

.footer__note:empty {
	min-height: 0;
}

.footer__bottom {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr) minmax(0, 1.2fr);
	gap: clamp(24px, 2.6vw, 50px);
	margin-top: clamp(32px, 3.65vw, 70px);
}

.footer__copy {
	font-size: clamp(13px, 0.94vw, 18px);
	line-height: 1.3;
	color: rgba(253, 252, 250, 0.42);
}

.footer__consent {
	margin-top: clamp(12px, 1.15vw, 22px);
	font-size: clamp(12px, 0.89vw, 17px);
	line-height: 1.55;
	color: rgba(253, 252, 250, 0.42);
}

.footer__consent a {
	color: rgba(253, 252, 250, 0.68);
	transition: color var(--transition);
}

.footer__consent a:hover {
	color: var(--brand-orange);
}

.footer__docs {
	display: flex;
	flex-direction: column;
	gap: clamp(8px, 0.94vw, 18px);
}

.footer__docs a {
	font-size: clamp(12px, 0.89vw, 17px);
	line-height: 1.3;
	color: rgba(253, 252, 250, 0.72);
	transition: color var(--transition);
}

.footer__docs a:hover {
	color: var(--brand-orange);
}

.footer__req {
	font-size: clamp(12px, 0.89vw, 17px);
	line-height: 1.45;
	color: rgba(253, 252, 250, 0.72);
}

.footer__disclaimer {
	margin-top: clamp(14px, 1.25vw, 24px);
	font-size: clamp(12px, 0.89vw, 17px);
	line-height: 1.45;
	color: rgba(253, 252, 250, 0.42);
}

.footer--simple .footer__grid,
.footer--simple .footer__bottom {
	margin-top: clamp(24px, 2.6vw, 50px);
}

.legal {
	padding: calc(var(--header-height) + clamp(32px, 4vw, 64px)) 0 clamp(56px, 6vw, 100px);
}

.legal__content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 900px;
}

.legal__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(24px, 2.6vw, 42px);
	line-height: 1.15;
	text-transform: uppercase;
	color: var(--text);
}

.legal__content h2 {
	margin-top: clamp(14px, 1.5vw, 26px);
	font-weight: 700;
	font-size: clamp(18px, 1.6vw, 24px);
	line-height: 1.25;
	color: var(--text);
}

.legal__content a {
	color: var(--brand-blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.legal__content a:hover {
	color: var(--brand-blue-dark);
}

.legal__back {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	min-height: 48px;
	margin-top: clamp(18px, 2vw, 32px);
	padding: 8px 26px;
	font-weight: 500;
	color: var(--text-invert) !important;
	text-decoration: none !important;
	background-color: var(--brand-blue);
	border-radius: var(--radius-full);
	transition: background-color var(--transition);
}

.legal__back:hover {
	color: var(--text-invert) !important;
	background-color: var(--brand-blue-dark);
}

.footer__docs a[aria-current="page"] {
	color: var(--brand-orange);
}

.legal__content p,
.legal__content li {
	color: var(--text-muted);
}

.legal__content ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-left: 20px;
	list-style: disc;
}

section[id] {
	scroll-margin-top: calc(var(--header-height) + 12px);
}

select.input {
	height: 54px;
	padding-right: 46px;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5 7 7l6-5.5' stroke='%23141416' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	cursor: pointer;
}

.forum {
	position: relative;
	color: var(--text-invert);
	background:
		radial-gradient(85% 65% at 4% -12%, #2647aa 0%, rgba(31, 46, 104, 0.92) 34%, rgba(25, 25, 26, 0) 72%),
		linear-gradient(180deg, #1b2a6b 0%, #182548 38%, #191919 82%, #141416 100%);
	overflow: hidden;
	isolation: isolate;
}

.forum__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-bottom: clamp(32px, 4vw, 68px);
	text-align: center;
}

.forum__title {
	font-weight: 700;
	font-size: clamp(24px, 2.7vw, 39px);
	line-height: 1.1;
	text-transform: uppercase;
}

.forum__subtitle {
	font-weight: 700;
	font-size: clamp(17px, 1.6vw, 23px);
	line-height: 1.2;
	color: var(--brand-orange);
}

.forum__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-areas:
		"fact-1 photo-hall"
		"fact-2 photo-hall"
		"photo-stage fact-3"
		"photo-stage fact-4";
	gap: clamp(24px, 2.6vw, 44px) clamp(30px, 7vw, 130px);
	align-items: center;
}

.forum__photo {
	width: 100%;
	max-width: 520px;
	aspect-ratio: 16 / 9;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.forum__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 62%;
	filter: grayscale(1) contrast(1.06);
}

.forum__photo--hall {
	grid-area: photo-hall;
	justify-self: end;
	transform: rotate(-2.4deg);
}

.forum__photo--stage {
	grid-area: photo-stage;
	justify-self: start;
	transform: rotate(1.8deg);
}

.forum__photo--stage img {
	object-position: center 42%;
}

.fact {
	position: relative;
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.4vw, 22px);
	max-width: 500px;
}

.fact--1 {
	grid-area: fact-1;
}

.fact--2 {
	grid-area: fact-2;
}

.fact--3 {
	grid-area: fact-3;
}

.fact--4 {
	grid-area: fact-4;
}

.fact__icon {
	flex-shrink: 0;
	line-height: 0;
}

.fact__icon svg {
	width: clamp(28px, 2.4vw, 34px);
	height: auto;
}

.fact__body {
	padding-left: clamp(14px, 1.4vw, 22px);
	border-left: 1px solid rgba(244, 98, 58, 0.55);
}

.fact__label {
	margin-bottom: 4px;
	font-weight: 700;
	font-size: clamp(13px, 1.1vw, 15px);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--brand-orange);
}

.fact__text {
	font-size: clamp(14px, 1.15vw, 18px);
	line-height: 1.4;
}

.fact__accent {
	font-weight: 700;
	color: var(--brand-orange);
}

.fact__num {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: -1;
	font-weight: 700;
	font-size: clamp(76px, 10vw, 168px);
	line-height: 1;
	color: rgba(0, 0, 0, 0.26);
	transform: translate(46%, -50%);
	pointer-events: none;
	user-select: none;
}

.roles {
	color: var(--text-invert);
	background-color: #191919;
}

.roles__title {
	margin-bottom: clamp(26px, 3.2vw, 54px);
	font-weight: 700;
	font-size: clamp(24px, 2.7vw, 39px);
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
}

.roles__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 1.4vw, 22px);
}

.role {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: clamp(40px, 5vw, 80px);
	min-height: clamp(270px, 23vw, 340px);
	padding: clamp(20px, 1.8vw, 28px);
	border-radius: 24px;
	background: linear-gradient(158deg, #26262c 0%, #17171c 58%, #131317 100%);
	overflow: hidden;
	isolation: isolate;
	transition: transform var(--transition), box-shadow var(--transition);
}

.role:hover {
	transform: translateY(-4px);
}

.role--orange {
	color: var(--brand-orange);
}

.role--orange:hover {
	box-shadow: 0 18px 44px rgba(244, 98, 58, 0.18);
}

.role--blue {
	color: #2f5ce0;
}

.role--blue:hover {
	box-shadow: 0 18px 44px rgba(47, 92, 224, 0.22);
}

.role__glow {
	position: absolute;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.role__icon {
	line-height: 0;
}

.role__icon svg {
	width: clamp(34px, 3vw, 44px);
	height: auto;
}

.role__title {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: clamp(15px, 1.25vw, 19px);
	line-height: 1.25;
	text-transform: uppercase;
	color: var(--text-invert);
}

.role__text {
	font-size: clamp(13px, 1.05vw, 16px);
	line-height: 1.35;
	color: rgba(253, 252, 250, 0.66);
}

.founder {
	position: relative;
	padding-top: clamp(40px, 5vw, 90px);
	color: var(--text-invert);
	background-color: #181818;
	overflow: hidden;
	isolation: isolate;
}

.founder::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -2;
	width: min(1500px, 130%);
	aspect-ratio: 1920 / 700;
	background-image: url("../img/grid-pattern.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.5;
	-webkit-mask-image: radial-gradient(58% 62% at 40% 48%, #000 0%, rgba(0, 0, 0, 0.45) 52%, rgba(0, 0, 0, 0) 82%);
	mask-image: radial-gradient(58% 62% at 40% 48%, #000 0%, rgba(0, 0, 0, 0.45) 52%, rgba(0, 0, 0, 0) 82%);
	transform: translate(-50%, -52%);
	pointer-events: none;
}

.founder__rays {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: clamp(280px, 38vw, 520px);
	opacity: 0.95;
	pointer-events: none;
}

.founder__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
	gap: clamp(20px, 3vw, 64px);
	align-items: end;
}

.founder__photo {
	width: 100%;
	max-width: 360px;
	justify-self: center;
	align-self: end;
}

.founder__content {
	display: flex;
	flex-direction: column;
	gap: clamp(18px, 2vw, 30px);
	padding-bottom: clamp(20px, 4vw, 70px);
}

.founder__title {
	max-width: 560px;
	font-weight: 700;
	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 1.2;
	color: #347bff;
}

.founder__quote {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.4vw, 22px);
	max-width: 470px;
}

.founder__avatar {
	flex-shrink: 0;
	width: clamp(48px, 4.4vw, 62px);
	height: clamp(48px, 4.4vw, 62px);
	border-radius: 50%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.05);
}

.founder__quote p {
	font-size: clamp(14px, 1.15vw, 17px);
	line-height: 1.4;
}

.founder__bio {
	max-width: 560px;
	font-size: clamp(12px, 0.95vw, 14px);
	line-height: 1.5;
	color: rgba(253, 252, 250, 0.5);
}

.founder__plate {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(20px, 3vw, 48px);
	width: min(64%, 840px);
	padding-block: clamp(14px, 1.4vw, 22px);
	padding-left: max(var(--container-padding), calc((100vw - var(--container)) / 2 + var(--container-padding)));
	padding-right: clamp(20px, 3vw, 48px);
	background-color: #2e2e2e;
	border-radius: 0 22px 22px 0;
}

.founder__name {
	font-weight: 500;
	font-size: clamp(14px, 1.15vw, 17px);
	color: var(--brand-orange);
}

.founder__role {
	font-size: clamp(14px, 1.15vw, 17px);
	color: var(--text-invert);
}

.founder__logo {
	width: clamp(84px, 7vw, 110px);
	flex-shrink: 0;
}

.numbers {
	padding-top: clamp(44px, 7.92vw, 152px);
	padding-bottom: clamp(48px, 6.25vw, 120px);
	color: #3e3e3e;
	background-color: #cccccc;
}

.numbers__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.numbers__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(23px, 3.23vw, 62px);
	line-height: 1.05;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: #2348d7;
}

.numbers__title span {
	color: #fe5c39;
}

.numbers__subtitle {
	display: flex;
	align-items: center;
	gap: clamp(10px, 1.3vw, 25px);
	margin-top: clamp(10px, 1.56vw, 30px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(15px, 1.875vw, 36px);
	line-height: 1.1;
	text-transform: uppercase;
	color: #3e3e3e;
}

.numbers__divider {
	width: 2px;
	height: clamp(16px, 1.77vw, 34px);
	background-color: #fe5c39;
}

.numbers__text {
	max-width: 875px;
	margin-top: clamp(16px, 2.08vw, 40px);
	font-size: clamp(14px, 1.042vw, 20px);
	line-height: 1.4;
	color: #3e3e3e;
}

.numbers__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(12px, 1.667vw, 32px);
	margin-top: clamp(22px, 2.5vw, 48px);
}

.stat {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	aspect-ratio: 374 / 240;
	padding: clamp(16px, 1.77vw, 34px) clamp(14px, 1.46vw, 28px);
	border-radius: clamp(10px, 0.73vw, 14px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.42), 0 16px 36px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	isolation: isolate;
}

.stat__value {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(20px, 1.875vw, 36px);
	line-height: 1.1;
}

.stat__label {
	font-size: clamp(12px, 1.042vw, 20px);
	line-height: 1.35;
	text-transform: uppercase;
}

.stat__more {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	min-height: 61.25%;
	padding: clamp(11px, 1.09vw, 21px) clamp(14px, 1.46vw, 28px) clamp(12px, 1.15vw, 22px);
	font-size: clamp(12px, 1.042vw, 20px);
	line-height: 1.25;
	color: #ffffff;
	background-color: #414141;
	border-top: 1px solid #fe5c39;
	transform: translateY(100%);
	transition: transform var(--transition);
}

.stat--light {
	background-color: #d4d4d4;
}

.stat--light .stat__value {
	color: #fe5c39;
}

.stat--light .stat__label {
	color: #3e3e3e;
}

.stat--dark {
	background-color: #1c1c1c;
}

.stat--dark .stat__value {
	color: #fe5c39;
}

.stat--dark .stat__label {
	color: #cccccc;
}

.stat--blue {
	background-image:
		radial-gradient(90% 75% at 45% 92%, rgba(214, 218, 232, 0.98) 0%, rgba(196, 202, 228, 0.55) 40%, rgba(160, 172, 216, 0) 72%),
		linear-gradient(to top right, #c3c9e2 0%, #aab5dd 30%, #8494d0 56%, #4a63c1 82%, #2f4dc0 100%);
}

.stat--blue::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: 0.3;
	mix-blend-mode: overlay;
	pointer-events: none;
}

.stat--blue .stat__value {
	color: #3e3e3e;
}

.stat--blue .stat__label {
	color: #fe5c39;
}

.promo {
	position: relative;
	margin-top: clamp(40px, 6.46vw, 124px);
	padding: clamp(22px, 2.19vw, 42px);
	border-radius: clamp(14px, 1.04vw, 20px);
	background-image:
		radial-gradient(32% 95% at 37% 16%, rgba(40, 72, 200, 0.5) 0%, rgba(40, 72, 200, 0.18) 48%, rgba(40, 72, 200, 0) 76%),
		linear-gradient(90deg, #d4d4d4 0%, #d4d4d4 15%, #9caed0 30%, #4560c2 42%, #576dc4 55%, #8a97cc 68%, #a4add2 80%, #6f80c4 90%, #4a61ba 98%, #4055b5 100%);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.42), 0 16px 36px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	isolation: isolate;
}

.promo::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23p)'/%3E%3C/svg%3E");
	opacity: 0.22;
	mix-blend-mode: overlay;
	pointer-events: none;
}

.promo__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(19px, 2.24vw, 43px);
	line-height: 1.02;
	text-transform: uppercase;
	color: #3e3e3e;
}

.promo__text {
	margin-top: clamp(10px, 0.94vw, 18px);
	font-size: clamp(14px, 1.15vw, 22px);
	line-height: 1.3;
	color: #3e3e3e;
}

.promo__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(10px, 1.04vw, 20px);
	margin-top: clamp(22px, 2.71vw, 52px);
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: clamp(8px, 0.73vw, 14px);
	height: clamp(46px, 3.6vw, 69px);
	padding-left: clamp(7px, 0.57vw, 11px);
	padding-right: clamp(18px, 1.77vw, 34px);
	font-size: clamp(13px, 0.99vw, 19px);
	font-weight: 500;
	line-height: 1;
	border-radius: var(--radius-full);
	transition: background-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.pill:active {
	transform: translateY(1px);
}

.pill__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: clamp(32px, 2.4vw, 46px);
	height: clamp(32px, 2.4vw, 46px);
	border-radius: 50%;
	transition: background-color var(--transition), transform var(--transition);
}

.pill__icon svg {
	width: clamp(9px, 0.63vw, 12px);
	height: auto;
}

.pill--orange {
	color: #ffffff;
	background-color: #fe5c39;
}

.pill--orange .pill__icon {
	background-color: #ffffff;
}

.pill--blue {
	color: #ffffff;
	background-color: #2348d7;
}

.pill--blue .pill__icon {
	background-color: #ffffff;
}

.pill--light {
	margin-left: auto;
	color: #2348d7;
	background-color: #e2e4ee;
}

.pill--light .pill__icon {
	background-color: #2348d7;
}

.pill--file {
	margin-left: auto;
	gap: clamp(10px, 0.83vw, 16px);
	padding-left: clamp(14px, 1.15vw, 22px);
	color: var(--text);
	background-color: #eceef4;
}

.pill--file .pill__icon {
	width: auto;
	height: auto;
	border-radius: 0;
	background-color: transparent;
}

.pill--file .pill__icon svg {
	width: clamp(18px, 1.25vw, 24px);
}

@media (hover: hover) and (min-width: 641px) {
	.stat:hover .stat__more {
		transform: translateY(0);
	}
}

@media (hover: hover) {
	.pill:hover {
		transform: translateY(-2px);
	}

	.pill:hover .pill__icon {
		transform: translateX(clamp(2px, 0.16vw, 3px));
	}

	.pill--orange:hover {
		background-color: var(--brand-orange-light);
		box-shadow: 0 10px 24px rgba(254, 92, 57, 0.4);
	}

	.pill--blue:hover {
		background-color: var(--brand-blue-dark);
		box-shadow: 0 10px 24px rgba(35, 72, 215, 0.42);
	}

	.pill--light:hover {
		color: var(--brand-blue-dark);
		background-color: #ffffff;
		box-shadow: 0 10px 24px rgba(16, 24, 64, 0.28);
	}

	.pill--light:hover .pill__icon {
		background-color: var(--brand-blue-dark);
	}

	.pill--file:hover {
		color: var(--brand-blue-dark);
		background-color: #ffffff;
		box-shadow: 0 10px 24px rgba(16, 24, 64, 0.28);
	}

	.pill--file:hover .pill__icon {
		transform: none;
	}
}

.people {
	position: relative;
	padding: clamp(52px, 9.58vw, 184px) var(--container-padding) clamp(52px, 10vw, 192px);
	background-color: #cccccc;
	overflow: hidden;
	isolation: isolate;
}

.people__wall {
	position: absolute;
	bottom: 0;
	z-index: -1;
	display: flex;
	align-items: flex-end;
	gap: 0.83vw;
	pointer-events: none;
}

.people__wall--left {
	left: 0;
}

.people__wall--right {
	right: 0;
}

.people__col {
	width: 7.71vw;
	height: calc(var(--col-h) / 1920 * 100vw);
	border-radius: 3.85vw 3.85vw 0 0;
	overflow: hidden;
}

.people__col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.04);
}

.people__center {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.people__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(24px, 3.44vw, 66px);
	line-height: 1.15;
	text-transform: uppercase;
	color: #3e3e3e;
}

.people__accent {
	margin-top: clamp(8px, 0.94vw, 18px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(16px, 1.875vw, 36px);
	line-height: 1.14;
	color: #fe5c39;
}

.people__accent span {
	text-transform: uppercase;
}

.people__scroll {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(38px, 2.5vw, 48px);
	height: clamp(38px, 2.5vw, 48px);
	margin: clamp(30px, 3.6vw, 69px) auto 0;
	border: 1px solid rgba(62, 62, 62, 0.5);
	border-radius: 50%;
	transition: background-color var(--transition), border-color var(--transition);
}

.people__scroll:hover {
	border-color: #3e3e3e;
	background-color: rgba(62, 62, 62, 0.08);
}

.people__scroll svg {
	width: clamp(14px, 0.94vw, 18px);
	height: auto;
}

.people__note {
	margin-top: clamp(26px, 3.75vw, 72px);
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.35;
	text-transform: uppercase;
	color: #3e3e3e;
}

.cats {
	position: relative;
	padding-top: clamp(44px, 5.99vw, 115px);
	padding-bottom: clamp(56px, 6.25vw, 120px);
	color: var(--text-invert);
	background-color: #1e1e1e;
	background-image:
		linear-gradient(#181818 4px, transparent 4px),
		linear-gradient(90deg, #181818 4px, transparent 4px);
	background-size: 18px 18px;
	overflow: hidden;
	isolation: isolate;
}

.cats__glow {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: clamp(240px, 32vw, 620px);
	pointer-events: none;
}

.cats__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.cats__title {
	max-width: 1420px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(23px, 3.44vw, 66px);
	line-height: 1.12;
	text-transform: uppercase;
	color: var(--text-invert);
}

.cats__title span {
	color: #2348d7;
}

.cats__lead {
	display: grid;
	grid-template-columns: minmax(0, 470fr) minmax(0, 930fr);
	gap: clamp(20px, 11.9vw, 190px);
	margin-top: clamp(30px, 4.17vw, 80px);
}

.cats__intro {
	padding-top: clamp(0px, 2.71vw, 52px);
}

.cats__intro-title {
	margin-bottom: clamp(4px, 0.42vw, 8px);
	font-size: clamp(14px, 1.25vw, 24px);
	line-height: 1.2;
	text-transform: uppercase;
	color: #2348d7;
}

.cats__intro-text {
	max-width: 470px;
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.4;
	color: #8c8c8d;
}

.cats__list {
	display: flex;
	flex-direction: column;
	gap: clamp(12px, 1.35vw, 26px);
	max-width: 700px;
}

.cats__item {
	display: flex;
	align-items: flex-start;
	gap: clamp(10px, 0.94vw, 18px);
}

.cats__bullet {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: clamp(22px, 1.46vw, 28px);
	height: clamp(22px, 1.46vw, 28px);
	border: 1px solid rgba(35, 72, 215, 0.9);
	border-radius: 50%;
}

.cats__bullet svg {
	width: clamp(11px, 0.68vw, 13px);
	height: auto;
}

.cats__item p {
	padding-top: 2px;
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.35;
	color: #8c8c8d;
}

.cats__item b {
	font-weight: 500;
	color: var(--text-invert);
}

.cats__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(12px, 1.35vw, 26px);
	margin-top: clamp(24px, 2.6vw, 50px);
}

.cat {
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
	background-color: #222222;
	border: 1px solid rgba(253, 252, 250, 0.07);
	border-radius: clamp(8px, 0.52vw, 10px);
	overflow: hidden;
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.cat:hover,
.cat:focus-within {
	transform: translateY(-4px);
	border-color: rgba(35, 72, 215, 0.7);
	box-shadow: 0 18px 44px rgba(35, 72, 215, 0.22);
}

.cat__media {
	width: 100%;
	aspect-ratio: 512 / 234;
	overflow: hidden;
}

.cat__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.cat:hover .cat__media img,
.cat:focus-within .cat__media img {
	transform: scale(1.06);
}

.cat__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
	padding: clamp(16px, 1.46vw, 28px) clamp(16px, 1.25vw, 24px);
}

.cat__title {
	font-weight: 500;
	font-size: clamp(14px, 1.04vw, 20px);
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--text-invert);
}

.cat__link:focus-visible {
	outline-color: var(--brand-blue-light);
}

.cat__link::after {
	content: "";
	position: absolute;
	inset: 0;
}

.cat__text {
	margin-top: clamp(8px, 0.83vw, 16px);
	margin-bottom: clamp(14px, 1.15vw, 22px);
	max-width: clamp(260px, 21vw, 420px);
	font-size: clamp(12px, 0.94vw, 18px);
	line-height: 1.4;
	text-wrap: balance;
	color: #8c8c8d;
}

.cat__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(28px, 1.77vw, 34px);
	margin-top: auto;
	padding: 4px clamp(14px, 1.15vw, 22px);
	font-size: clamp(11px, 0.73vw, 14px);
	white-space: nowrap;
	color: var(--text-invert);
	background-color: #2348d7;
	border-radius: var(--radius-full);
	transition: background-color var(--transition);
}

.cat:hover .cat__badge,
.cat:focus-within .cat__badge {
	background-color: var(--brand-blue-dark);
}

.inv {
	position: relative;
	padding-top: clamp(48px, 6.25vw, 120px);
	padding-bottom: clamp(56px, 6.25vw, 120px);
	color: var(--text-invert);
	background-color: #131315;
	overflow: hidden;
	isolation: isolate;
}

.inv__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.inv__head {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
	text-align: right;
}

.inv__year {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(96px, 15.1vw, 290px);
	line-height: 1;
	letter-spacing: 0.02em;
	color: rgba(253, 252, 250, 0.06);
	white-space: nowrap;
	transform: translate(-50%, -34%);
	pointer-events: none;
	user-select: none;
}

.inv__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(28px, 3.44vw, 66px);
	line-height: 1.06;
	text-transform: uppercase;
	color: var(--text-invert);
}

.inv__accent {
	display: block;
	color: var(--brand-orange);
}

.inv__text {
	margin-top: clamp(14px, 1.15vw, 22px);
	margin-left: auto;
	max-width: 780px;
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.35;
	text-transform: uppercase;
	color: var(--text-invert);
}

.inv__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2.34vw, 45px);
	margin-top: clamp(32px, 3.65vw, 70px);
}

.invest {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(8px, 0.63vw, 12px);
	background-color: #1c1c1e;
	border: 1px solid rgba(253, 252, 250, 0.07);
	border-radius: clamp(12px, 0.94vw, 18px);
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.invest:hover {
	transform: translateY(-4px);
	border-color: rgba(35, 72, 215, 0.7);
	box-shadow: 0 18px 44px rgba(35, 72, 215, 0.22);
}

.invest__photo {
	position: relative;
	aspect-ratio: 340 / 275;
	background: linear-gradient(158deg, #2f4bb8 0%, #4b3f92 48%, #201f2e 100%);
	border-radius: clamp(9px, 0.68vw, 13px);
	overflow: hidden;
}

.invest__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.invest__tag {
	position: absolute;
	bottom: clamp(6px, 0.42vw, 8px);
	left: clamp(8px, 0.63vw, 12px);
	display: inline-flex;
	align-items: center;
	min-height: clamp(22px, 1.35vw, 26px);
	padding: 3px clamp(10px, 0.73vw, 14px);
	font-size: clamp(11px, 0.73vw, 14px);
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-radius: var(--radius-full);
}

.invest__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: clamp(14px, 1.04vw, 20px) clamp(4px, 0.31vw, 6px) clamp(6px, 0.52vw, 10px);
}

.invest__name {
	font-weight: 500;
	font-size: clamp(17px, 1.25vw, 24px);
	line-height: 1.2;
	color: var(--text-invert);
}

.invest__role {
	margin-top: clamp(8px, 0.63vw, 12px);
	font-size: clamp(13px, 0.83vw, 16px);
	line-height: 1.45;
	color: #8c8c8d;
}

.invest__city {
	margin-top: clamp(6px, 0.42vw, 8px);
	margin-bottom: clamp(14px, 1.04vw, 20px);
	font-size: clamp(12px, 0.73vw, 14px);
	line-height: 1.3;
	color: rgba(253, 252, 250, 0.32);
}

.invest__foot {
	margin-top: auto;
	padding-top: clamp(12px, 0.94vw, 18px);
	border-top: 1px solid rgba(253, 252, 250, 0.09);
}

.invest__label {
	display: block;
	font-size: clamp(12px, 0.73vw, 14px);
	line-height: 1.3;
	color: #8c8c8d;
}

.invest__sum {
	display: block;
	margin-top: clamp(4px, 0.31vw, 6px);
	font-weight: 500;
	font-size: clamp(15px, 0.94vw, 18px);
	line-height: 1.3;
	color: var(--text-invert);
}

.band {
	position: relative;
	border-right: clamp(4px, 0.42vw, 8px) solid var(--brand-blue);
	border-bottom: clamp(4px, 0.42vw, 8px) solid var(--brand-blue);
	border-left: clamp(4px, 0.42vw, 8px) solid var(--brand-blue);
	background-color: #16171b;
	overflow: hidden;
	isolation: isolate;
}

.band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: url("../img/band-hall.jpg");
	background-position: center;
	background-size: cover;
	filter: contrast(1.25) brightness(0.9);
}

.band::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-color: rgba(18, 20, 26, 0.3);
}

.band__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
	padding: clamp(28px, 2.4vw, 46px) 0 clamp(30px, 3.07vw, 59px);
}

.band__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(19px, 2.24vw, 43px);
	line-height: 1.06;
	text-transform: uppercase;
	color: var(--text-invert);
}

.band__text {
	margin-top: clamp(10px, 0.94vw, 18px);
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.3;
	color: var(--text-invert);
}

.band__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(10px, 1.04vw, 20px);
	margin-top: clamp(24px, 2.71vw, 52px);
}

.prt {
	padding-top: clamp(48px, 6.25vw, 120px);
	padding-bottom: clamp(56px, 6.25vw, 120px);
	color: var(--text-invert);
	background-color: #131315;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='62' height='62'%3E%3Crect x='5' y='5' width='46' height='46' rx='14' fill='%23fdfcfa' fill-opacity='0.022'/%3E%3C/svg%3E");
}

.prt__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.prt__head {
	text-align: center;
}

.prt__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(28px, 3.44vw, 66px);
	line-height: 1.06;
	text-transform: uppercase;
	color: var(--text-invert);
}

.prt__title span {
	color: var(--brand-orange);
}

.prt__lead {
	max-width: 880px;
	margin-top: clamp(16px, 1.72vw, 33px);
	margin-inline: auto;
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.4;
	color: var(--text-invert);
}

.prt__note {
	margin-top: clamp(14px, 1.35vw, 26px);
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.4;
	color: var(--brand-orange);
}

.prt__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 1.72vw, 33px);
	margin-top: clamp(28px, 3.4vw, 65px);
}

.partner {
	display: flex;
	flex-direction: column;
	padding: clamp(8px, 0.57vw, 11px);
	background-color: #1a1a1c;
	border: 1px solid rgba(253, 252, 250, 0.06);
	border-radius: clamp(14px, 1.15vw, 22px);
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.partner:hover {
	transform: translateY(-4px);
	border-color: rgba(35, 72, 215, 0.7);
	box-shadow: 0 18px 44px rgba(20, 20, 22, 0.34);
}

.partner__photo {
	position: relative;
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	min-height: 0;
	aspect-ratio: 356 / 269;
	background-color: #2f45d4;
	border-radius: clamp(10px, 0.73vw, 14px);
}

.partner__photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	border-radius: inherit;
}

.partner__mark {
	font-weight: 700;
	font-size: clamp(48px, 4.69vw, 90px);
	line-height: 1;
	color: var(--text-invert);
}

.partner__tag {
	position: absolute;
	bottom: -4px;
	left: -4px;
	display: inline-flex;
	align-items: center;
	min-height: clamp(22px, 1.67vw, 32px);
	padding: 2px clamp(9px, 0.73vw, 14px);
	font-size: clamp(10px, 0.68vw, 13px);
	line-height: 1.2;
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-radius: 0 clamp(8px, 0.52vw, 10px) 0 clamp(10px, 0.73vw, 14px);
	box-shadow: 0 0 0 4px #1a1a1c;
}

.partner__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: clamp(14px, 1.15vw, 22px) clamp(4px, 0.36vw, 7px) clamp(2px, 0.16vw, 3px);
}

.partner__name {
	font-weight: 500;
	font-size: clamp(16px, 1.2vw, 23px);
	line-height: 1.2;
	color: var(--text-invert);
}

.partner__company {
	margin-top: clamp(8px, 0.63vw, 12px);
	font-size: clamp(12px, 0.89vw, 17px);
	line-height: 1.35;
	color: var(--brand-blue-light);
}

.partner__role {
	margin-top: clamp(6px, 0.47vw, 9px);
	font-size: clamp(12px, 0.89vw, 17px);
	line-height: 1.35;
	color: rgba(253, 252, 250, 0.74);
}

.partner__city {
	margin-top: clamp(6px, 0.42vw, 8px);
	margin-bottom: auto;
	font-size: clamp(11px, 0.78vw, 15px);
	line-height: 1.3;
	color: rgba(253, 252, 250, 0.32);
}

.partner--soon .partner__name {
	margin-bottom: auto;
}

.partner__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(40px, 2.66vw, 51px);
	margin-top: clamp(14px, 1.15vw, 22px);
	padding: 6px 16px;
	font-weight: 500;
	font-size: clamp(13px, 0.89vw, 17px);
	line-height: 1.2;
	text-align: center;
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-radius: clamp(6px, 0.42vw, 8px);
	transition: background-color var(--transition);
}

.partner__btn:hover {
	background-color: var(--brand-blue-dark);
}

.prj {
	background-color: #d8d8d8;
	overflow: hidden;
}

.prj__head {
	padding: clamp(36px, 3.65vw, 70px) 0 clamp(38px, 3.65vw, 70px);
	background-color: #cdcdcd;
}

.prj__head-inner,
.prj__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.prj__head-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(18px, 3.12vw, 60px);
}

.prj__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(28px, 3.44vw, 66px);
	line-height: 1.08;
	text-transform: uppercase;
	color: #3a3a3a;
}

.prj__accent {
	display: block;
	color: var(--brand-blue);
}

.prj__aside {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: clamp(16px, 1.98vw, 38px);
	max-width: clamp(280px, 34vw, 655px);
	text-align: right;
}

.prj__text {
	font-size: clamp(13px, 0.99vw, 19px);
	line-height: 1.4;
	color: #3a3a3a;
}

.prj__mark svg {
	width: clamp(30px, 2.4vw, 46px);
	height: auto;
}

.prj__inner {
	padding-top: clamp(24px, 2.24vw, 43px);
	padding-bottom: clamp(32px, 2.19vw, 42px);
}

.prj__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 1.51vw, 29px);
}

.prj-card {
	display: flex;
	flex-direction: column;
	padding: clamp(8px, 0.57vw, 11px);
	background-color: #2b2b2b;
	border: 1px solid rgba(253, 252, 250, 0.06);
	border-radius: clamp(14px, 1.15vw, 22px);
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.prj-card[hidden] {
	display: none;
}

.prj-card:hover {
	transform: translateY(-4px);
	border-color: rgba(35, 72, 215, 0.7);
	box-shadow: 0 18px 44px rgba(20, 20, 22, 0.3);
}

.prj-card__media {
	position: relative;
}

.prj-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 350 / 273;
	padding: clamp(16px, 1.51vw, 29px);
	background-color: #363638;
	border-radius: clamp(10px, 0.73vw, 14px);
	overflow: hidden;
}

.prj-card__logo--light {
	background-color: var(--surface);
}

.prj-card__logo img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.prj-card__tag {
	position: absolute;
	bottom: -4px;
	left: -4px;
	display: inline-flex;
	align-items: center;
	min-height: clamp(22px, 1.67vw, 32px);
	padding: 2px clamp(9px, 0.73vw, 14px);
	font-size: clamp(10px, 0.68vw, 13px);
	line-height: 1.2;
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-radius: 0 clamp(8px, 0.52vw, 10px) 0 clamp(10px, 0.73vw, 14px);
	box-shadow: 0 0 0 4px #2b2b2b;
}

.prj-card__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: clamp(14px, 1.15vw, 22px) clamp(4px, 0.36vw, 7px) clamp(2px, 0.16vw, 3px);
}

.prj-card__title {
	font-weight: 500;
	font-size: clamp(16px, 1.25vw, 24px);
	line-height: 1.2;
	color: var(--text-invert);
}

.prj-card__text {
	margin-top: clamp(8px, 0.63vw, 12px);
	font-size: clamp(13px, 0.83vw, 16px);
	line-height: 1.4;
	color: #8c8c8d;
}

.prj-card__row {
	margin-top: clamp(6px, 0.42vw, 8px);
	font-size: clamp(12px, 0.78vw, 15px);
	line-height: 1.35;
	color: #6f6f70;
}

.prj-card__row span {
	color: #a5a5a6;
}

.prj-card__row:last-of-type {
	margin-bottom: auto;
}

.prj-card__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(40px, 2.86vw, 55px);
	margin-top: clamp(14px, 1.15vw, 22px);
	padding: 6px 16px;
	font-weight: 500;
	font-size: clamp(13px, 0.89vw, 17px);
	line-height: 1.2;
	text-align: center;
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-radius: clamp(6px, 0.42vw, 8px);
	transition: background-color var(--transition);
}

.prj-card__btn:hover {
	background-color: var(--brand-blue-dark);
}

.prj__more {
	display: flex;
	justify-content: center;
	margin-top: clamp(24px, 3.07vw, 59px);
}

.prj__more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: clamp(210px, 18.6vw, 357px);
	min-height: clamp(46px, 3.33vw, 64px);
	padding: 8px 26px;
	font-size: clamp(13px, 0.89vw, 17px);
	line-height: 1.2;
	color: var(--brand-blue);
	background-color: #eef0fd;
	border: 1px solid #b9c4f4;
	border-radius: clamp(6px, 0.42vw, 8px);
	transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

.prj__more-btn:hover {
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-color: var(--brand-blue);
}

.prj__more-btn[hidden] {
	display: none;
}

.space {
	position: relative;
	display: flex;
	overflow: hidden;
	min-height: clamp(430px, 46vw, 830px);
	background-image: linear-gradient(112deg, #3d57dc 0%, #2c4ad2 46%, #2340c6 100%);
}

.space__media {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.space__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 100% 50%;
}

.space__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(38px, 4.06vw, 78px) clamp(20px, 5.63vw, 108px) clamp(28px, 2.6vw, 50px);
}

.space__content {
	max-width: clamp(280px, 52vw, 1000px);
}

.space__kicker {
	font-weight: 700;
	font-size: clamp(15px, 1.6vw, 30px);
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--brand-orange);
}

.space__title {
	margin-top: clamp(6px, 0.63vw, 12px);
	font-weight: 700;
	font-size: clamp(32px, 3.65vw, 70px);
	line-height: 1.1;
	color: var(--text-invert);
}

.space__lead {
	margin-top: clamp(24px, 3.33vw, 64px);
	font-weight: 700;
	font-size: clamp(19px, 1.87vw, 36px);
	line-height: 1.28;
	color: var(--text-invert);
}

.space__brand {
	display: block;
	text-transform: uppercase;
}

.space__text {
	max-width: 55ch;
	margin-top: clamp(18px, 3.02vw, 58px);
	font-size: clamp(14px, 1.04vw, 20px);
	line-height: 1.5;
	color: rgba(253, 252, 250, 0.92);
}

.space__more {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(12px, 1.15vw, 22px);
	margin-top: auto;
	padding-top: clamp(32px, 3.1vw, 60px);
	padding-right: clamp(0px, 3vw, 58px);
}

.space__note {
	font-size: clamp(13px, 0.94vw, 18px);
	line-height: 1.4;
	text-align: center;
	color: rgba(253, 252, 250, 0.92);
}

.space__scroll {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(44px, 3.44vw, 66px);
	height: clamp(44px, 3.44vw, 66px);
	color: var(--text-invert);
	border: 1px solid rgba(253, 252, 250, 0.55);
	border-radius: var(--radius-full);
	transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

.space__scroll:hover {
	color: var(--brand-blue);
	background-color: var(--text-invert);
	border-color: var(--text-invert);
}

.space__scroll svg {
	width: clamp(13px, 0.94vw, 18px);
	height: auto;
}

.map {
	padding: clamp(40px, 4.17vw, 80px) 0 clamp(44px, 4.69vw, 90px);
	background-color: #0c0c10;
	background-image:
		radial-gradient(58% 52% at 76% 24%, rgba(196, 64, 34, 0.34) 0%, rgba(12, 12, 16, 0) 66%),
		radial-gradient(42% 40% at 56% 84%, rgba(23, 60, 190, 0.26) 0%, rgba(12, 12, 16, 0) 70%);
	overflow: hidden;
}

.map__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.92fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(24px, 3.13vw, 60px);
	width: min(1750px, 100% - clamp(24px, 4.17vw, 80px));
	margin: 0 auto;
}

.map__scheme img {
	width: 100%;
	height: auto;
}

.map__info {
	max-width: 520px;
}

.map__lead {
	font-size: clamp(15px, 1.15vw, 22px);
	line-height: 1.4;
	color: var(--text-invert);
}

.map__list {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 2.29vw, 44px);
	margin-top: clamp(28px, 5.21vw, 100px);
}

.map__title {
	font-weight: 700;
	font-size: clamp(16px, 1.15vw, 22px);
	line-height: 1.2;
	text-transform: uppercase;
}

.map__title--orange {
	color: var(--brand-orange);
}

.map__title--blue {
	color: var(--brand-blue-light);
}

.map__title--green {
	color: var(--4-akcent);
}

.map__text {
	margin-top: clamp(10px, 0.83vw, 16px);
	font-size: clamp(14px, 0.94vw, 18px);
	line-height: 1.45;
	color: rgba(253, 252, 250, 0.86);
}

.program {
	position: relative;
	display: flex;
	overflow: hidden;
	min-height: clamp(400px, 33.3vw, 620px);
	background-color: #d5d5d5;
}

.program__media {
	position: absolute;
	right: clamp(0px, 2.92vw, 56px);
	bottom: 0;
	height: 93%;
	pointer-events: none;
}

.program__media img {
	display: block;
	width: auto;
	height: 100%;
}

.program__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(30px, 3.13vw, 60px) clamp(20px, 4.17vw, 80px) clamp(34px, 3.13vw, 60px) clamp(20px, 7.19vw, 138px);
}

.program__badge {
	padding: clamp(8px, 0.63vw, 12px) clamp(16px, 1.46vw, 28px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--brand-orange);
	border: 1px solid var(--brand-orange);
	border-radius: var(--radius-full);
}

.program__title {
	margin-top: clamp(16px, 1.77vw, 34px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(28px, 3.28vw, 63px);
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--brand-orange);
}

.program__subtitle {
	margin-top: clamp(14px, 1.72vw, 33px);
	font-weight: 700;
	font-size: clamp(19px, 1.87vw, 36px);
	line-height: 1.25;
	color: #3a3a3a;
}

.program__text {
	max-width: clamp(280px, 40vw, 640px);
	margin-top: clamp(16px, 1.88vw, 36px);
	font-size: clamp(14px, 0.94vw, 18px);
	line-height: 1.5;
	color: #4a4a4a;
}

.program__place {
	display: flex;
	align-items: center;
	gap: clamp(10px, 0.94vw, 18px);
	margin-top: clamp(24px, 3.02vw, 58px);
	font-weight: 700;
	font-size: clamp(15px, 1.15vw, 22px);
	line-height: 1.3;
	color: var(--brand-orange);
}

.program__pin {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--brand-orange);
}

.program__pin svg {
	width: clamp(18px, 1.15vw, 22px);
	height: auto;
}

.day {
	padding: clamp(36px, 3.44vw, 66px) 0 clamp(40px, 4.17vw, 80px);
	background-color: #d5d5d5;
	background-image:
		radial-gradient(42% 26% at 56% 48%, rgba(244, 98, 58, 0.26) 0%, rgba(213, 213, 213, 0) 68%),
		radial-gradient(46% 24% at 42% 92%, rgba(35, 72, 215, 0.14) 0%, rgba(213, 213, 213, 0) 70%);
}

.day__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.day__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 1.15vw, 22px);
}

.day__icon {
	display: inline-flex;
	color: var(--brand-blue);
}

.day__icon svg {
	width: clamp(24px, 1.77vw, 34px);
	height: auto;
}

.day__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(18px, 1.67vw, 32px);
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--brand-blue);
}

.day__time {
	padding: clamp(8px, 0.68vw, 13px) clamp(16px, 1.46vw, 28px);
	font-weight: 700;
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.2;
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-radius: var(--radius-full);
}

.day__rows {
	display: flex;
	flex-direction: column;
	gap: clamp(18px, 1.88vw, 36px);
	margin-top: clamp(28px, 3.02vw, 58px);
}

.day__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(18px, 2.4vw, 46px);
}

.day__media img {
	width: 100%;
	height: auto;
}

.day__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 640px;
}

.day__row--reverse .day__media {
	order: 2;
}

.day__row--reverse .day__body {
	align-items: flex-end;
	margin-left: auto;
	text-align: right;
}

.day__name {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(16px, 1.25vw, 24px);
	line-height: 1.3;
	text-transform: uppercase;
	color: #2f2f33;
}

.day__text {
	margin-top: clamp(14px, 1.25vw, 24px);
	font-size: clamp(14px, 0.94vw, 18px);
	line-height: 1.55;
	color: #4a4a4a;
}

.day__text strong {
	font-weight: 700;
	color: #2f2f33;
}

.day__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(42px, 2.71vw, 52px);
	margin-top: clamp(18px, 1.98vw, 38px);
	padding: 6px clamp(18px, 1.77vw, 34px);
	font-size: clamp(13px, 0.89vw, 17px);
	line-height: 1.2;
	color: #2f2f33;
	border: 1px solid #2f2f33;
	border-radius: var(--radius-full);
	transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

.day__btn:hover {
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-color: var(--brand-blue);
}

.night {
	padding: clamp(36px, 3.44vw, 66px) 0 clamp(44px, 4.69vw, 90px);
	background-color: #0b0b11;
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='62' height='62'%3E%3Crect x='5' y='5' width='46' height='46' rx='14' fill='%23fdfcfa' fill-opacity='0.022'/%3E%3C/svg%3E"),
		radial-gradient(40% 30% at 82% 34%, rgba(35, 72, 215, 0.28) 0%, rgba(11, 11, 17, 0) 70%),
		radial-gradient(38% 26% at 18% 72%, rgba(90, 42, 190, 0.24) 0%, rgba(11, 11, 17, 0) 70%);
}

.night__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.night__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 1.15vw, 22px);
}

.night__icon {
	display: inline-flex;
	color: var(--brand-blue);
}

.night__icon svg {
	width: clamp(24px, 1.77vw, 34px);
	height: auto;
}

.night__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(18px, 1.67vw, 32px);
	line-height: 1.2;
	text-transform: uppercase;
	color: #7d97ff;
}

.night__time {
	padding: clamp(8px, 0.68vw, 13px) clamp(16px, 1.46vw, 28px);
	font-weight: 700;
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.2;
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-radius: var(--radius-full);
}

.night__rows {
	display: flex;
	flex-direction: column;
	gap: clamp(18px, 1.88vw, 36px);
	margin-top: clamp(24px, 2.4vw, 46px);
}

.night__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(18px, 2.4vw, 46px);
}

.night__media img {
	width: 100%;
	height: auto;
}

.night__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 640px;
}

.night__row--reverse .night__media {
	order: 2;
}

.night__row--reverse .night__body {
	align-items: flex-end;
	margin-left: auto;
	text-align: right;
}

.night__name {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(16px, 1.25vw, 24px);
	line-height: 1.3;
	text-transform: uppercase;
	color: #7d97ff;
}

.night__slot {
	margin-top: clamp(12px, 1.04vw, 20px);
	padding: clamp(5px, 0.42vw, 8px) clamp(14px, 1.15vw, 22px);
	font-weight: 700;
	font-size: clamp(12px, 0.78vw, 15px);
	line-height: 1.2;
	color: var(--brand-orange);
	border: 1px solid var(--brand-orange);
	border-radius: var(--radius-full);
}

.night__text {
	margin-top: clamp(14px, 1.25vw, 24px);
	font-size: clamp(14px, 0.94vw, 18px);
	line-height: 1.55;
	color: rgba(253, 252, 250, 0.8);
}

.night__text--tight {
	margin-top: clamp(2px, 0.16vw, 3px);
}

.night__accent {
	margin-top: clamp(14px, 1.25vw, 24px);
	font-size: clamp(14px, 0.94vw, 18px);
	line-height: 1.55;
	color: var(--brand-orange);
}

.night__list {
	display: flex;
	flex-direction: column;
	gap: clamp(8px, 0.63vw, 12px);
	margin-top: clamp(18px, 1.56vw, 30px);
}

.night__item {
	display: flex;
	align-items: flex-start;
	gap: clamp(8px, 0.63vw, 12px);
	font-size: clamp(13px, 0.89vw, 17px);
	line-height: 1.45;
	color: rgba(253, 252, 250, 0.8);
}

.night__note {
	color: rgba(253, 252, 250, 0.55);
}

.night__mark {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--brand-orange);
}

.night__mark svg {
	width: clamp(16px, 1.04vw, 20px);
	height: auto;
}

.night__row--reverse .night__item {
	flex-direction: row-reverse;
}

.tickets {
	padding: clamp(38px, 3.65vw, 70px) 0 clamp(44px, 4.69vw, 90px);
	background-color: #131315;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='62' height='62'%3E%3Crect x='5' y='5' width='46' height='46' rx='14' fill='%23fdfcfa' fill-opacity='0.022'/%3E%3C/svg%3E");
}

.tickets__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.tickets__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(22px, 1.98vw, 38px);
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	color: var(--text-invert);
}

.tickets__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 1.77vw, 34px);
	margin-top: clamp(30px, 3.13vw, 60px);
}

.ticket {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ticket__card {
	--pad: clamp(14px, 1.15vw, 22px);
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: clamp(16px, 1.35vw, 26px) var(--pad) clamp(16px, 1.35vw, 26px);
	color: var(--text-invert);
	background-color: #1c1c1f;
	border-radius: clamp(12px, 0.94vw, 18px);
}

.ticket__head {
	display: flex;
}

.ticket__badges {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 8px;
}

.ticket__num,
.ticket__date {
	display: inline-flex;
	align-items: center;
	min-height: clamp(24px, 1.67vw, 32px);
	padding: 2px clamp(8px, 0.63vw, 12px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(11px, 0.73vw, 14px);
	line-height: 1.2;
	border-radius: clamp(5px, 0.31vw, 6px);
}

.ticket__num {
	text-transform: uppercase;
	color: #5b7bff;
	border: 1px solid #3a5bea;
}

.ticket__date {
	color: #1e1e20;
	background-color: #f3f3f3;
}

.ticket__notch {
	position: absolute;
	top: 0;
	left: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(34px, 2.71vw, 52px);
	height: clamp(34px, 2.71vw, 52px);
	color: var(--brand-orange);
	background-color: #131315;
	border: 1px solid var(--brand-orange);
	border-radius: var(--radius-full);
	transform: translate(-50%, -50%);
}

.ticket__notch svg {
	width: clamp(10px, 0.73vw, 14px);
	height: auto;
}

.ticket__brand {
	margin-top: clamp(14px, 1.15vw, 22px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(11px, 0.73vw, 14px);
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	color: var(--brand-orange);
}

.ticket__brand span {
	color: var(--text-invert);
}

.ticket--light .ticket__brand span {
	color: #1e1e20;
}

.ticket__name {
	margin-top: clamp(10px, 0.83vw, 16px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(18px, 1.46vw, 28px);
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
}

.ticket__desc {
	margin: clamp(14px, 1.15vw, 22px) calc(var(--pad) * -1) 0;
	padding: clamp(14px, 1.15vw, 22px) var(--pad) 0;
	font-size: clamp(12px, 0.83vw, 16px);
	line-height: 1.35;
	text-align: center;
	color: rgba(253, 252, 250, 0.6);
	border-top: 1px dashed rgba(253, 252, 250, 0.22);
}

.ticket__time {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	margin-top: clamp(12px, 0.99vw, 19px);
	padding: clamp(8px, 0.63vw, 12px) clamp(12px, 0.94vw, 18px);
	text-align: center;
	border: 1px solid rgba(253, 252, 250, 0.35);
	border-radius: var(--radius-full);
}

.ticket__time strong {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(13px, 0.94vw, 18px);
	line-height: 1.2;
}

.ticket__time span {
	font-size: clamp(10px, 0.68vw, 13px);
	line-height: 1.2;
	color: rgba(253, 252, 250, 0.6);
}

.ticket__price {
	margin-top: clamp(16px, 1.35vw, 26px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(24px, 1.87vw, 36px);
	line-height: 1.1;
}

.ticket__place {
	margin-top: clamp(8px, 0.63vw, 12px);
	font-size: clamp(11px, 0.73vw, 14px);
	line-height: 1.35;
	color: rgba(253, 252, 250, 0.5);
}

.ticket--light .ticket__card {
	color: #1e1e20;
	background-color: #e9e9e9;
}

.ticket--light .ticket__name {
	color: var(--brand-blue);
}

.ticket--light .ticket__desc {
	color: #6a6a6d;
	border-top-color: rgba(30, 30, 32, 0.25);
}

.ticket--light .ticket__time {
	border-color: rgba(30, 30, 32, 0.35);
}

.ticket--light .ticket__time span,
.ticket--light .ticket__place {
	color: #6a6a6d;
}

.ticket--blue .ticket__card {
	background-color: #14141a;
	background-image:
		radial-gradient(120% 62% at 20% 6%, #10309e 0%, rgba(20, 20, 26, 0) 72%),
		radial-gradient(96% 52% at 88% 34%, #2450e8 0%, rgba(20, 20, 26, 0) 68%);
}

.ticket--orange .ticket__card {
	background-color: #14141a;
	background-image:
		radial-gradient(120% 62% at 22% 6%, #7c2413 0%, rgba(20, 20, 26, 0) 72%),
		radial-gradient(96% 52% at 86% 30%, #d34a25 0%, rgba(20, 20, 26, 0) 66%);
}

.ticket__more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(8px, 0.63vw, 12px);
	min-height: clamp(48px, 3.44vw, 66px);
	padding: 8px 16px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(11px, 0.78vw, 15px);
	line-height: 1.2;
	text-transform: uppercase;
	color: #5b7bff;
	background-color: #232326;
	border-radius: clamp(12px, 0.94vw, 18px);
	transition: color var(--transition), background-color var(--transition);
}

.ticket__more:hover {
	color: var(--text-invert);
	background-color: var(--brand-blue);
}

.ticket__more-icon {
	display: inline-flex;
	flex-shrink: 0;
}

.ticket__more-icon svg {
	width: clamp(14px, 0.94vw, 18px);
	height: auto;
}

.modal--ticket .modal__title {
	font-family: var(--second-family);
	font-size: clamp(17px, 1.25vw, 24px);
	text-transform: uppercase;
}

.modal--ticket .modal__dialog {
	background-color: #191a1d;
	background-image:
		radial-gradient(64% 46% at 92% 6%, rgba(196, 64, 34, 0.34) 0%, rgba(25, 26, 29, 0) 66%),
		radial-gradient(56% 40% at 12% 2%, rgba(35, 72, 215, 0.2) 0%, rgba(25, 26, 29, 0) 68%);
}

.modal__badges {
	display: flex;
	flex-shrink: 0;
	margin-left: auto;
	align-items: center;
	gap: clamp(6px, 0.42vw, 8px);
}

.modal__badges:empty {
	display: none;
}

.tfacts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(10px, 0.83vw, 16px) clamp(16px, 1.56vw, 30px);
	padding: clamp(14px, 1.15vw, 22px) clamp(14px, 1.25vw, 24px);
	background-color: rgba(253, 252, 250, 0.03);
	border: 1px solid rgba(253, 252, 250, 0.07);
	border-radius: clamp(12px, 0.94vw, 18px);
}

.tfacts__item {
	display: flex;
	align-items: flex-start;
	gap: clamp(8px, 0.63vw, 12px);
	font-size: clamp(12px, 0.83vw, 16px);
	line-height: 1.4;
	color: rgba(253, 252, 250, 0.72);
}

.tfacts__icon {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--brand-orange);
}

.tfacts__icon svg {
	width: clamp(15px, 0.99vw, 19px);
	height: auto;
}

.tfacts__label {
	color: var(--text-invert);
}

.tblock {
	margin-top: clamp(14px, 1.25vw, 24px);
	padding: clamp(14px, 1.25vw, 24px);
	border: 1px solid rgba(253, 252, 250, 0.1);
	border-radius: clamp(12px, 0.94vw, 18px);
}

.tblock--blue {
	border-color: rgba(58, 91, 234, 0.5);
}

.tblock--blue .tblock__title {
	color: #5b7bff;
}

.tblock--green {
	border-color: rgba(110, 207, 133, 0.45);
}

.tblock--green .tblock__title {
	color: #6ecf85;
}

.tblock__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(13px, 0.89vw, 17px);
	line-height: 1.2;
	text-transform: uppercase;
}

.tblock .tcard__text,
.tblock .tcard__list {
	margin-top: clamp(8px, 0.63vw, 12px);
}

.tsection {
	margin-top: clamp(18px, 1.56vw, 30px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(13px, 0.89vw, 17px);
	line-height: 1.2;
	text-transform: uppercase;
	color: #5b7bff;
}

.tgrid {
	columns: 2;
	column-gap: clamp(12px, 1.15vw, 22px);
	margin-top: clamp(12px, 1.04vw, 20px);
}

.tcard {
	break-inside: avoid;
	margin-bottom: clamp(12px, 1.15vw, 22px);
	padding: clamp(14px, 1.15vw, 22px);
	background-color: rgba(253, 252, 250, 0.03);
	border: 1px solid rgba(253, 252, 250, 0.07);
	border-radius: clamp(12px, 0.94vw, 18px);
}

.tcard--red {
	border-color: rgba(244, 98, 58, 0.45);
}

.tcard__title {
	font-weight: 500;
	font-size: clamp(13px, 0.94vw, 18px);
	line-height: 1.3;
	color: var(--brand-orange);
}

.tcard__text {
	margin-top: clamp(8px, 0.63vw, 12px);
	font-size: clamp(12px, 0.83vw, 16px);
	line-height: 1.45;
	color: rgba(253, 252, 250, 0.72);
}

.tcard__accent {
	margin-top: clamp(8px, 0.63vw, 12px);
	font-size: clamp(12px, 0.83vw, 16px);
	line-height: 1.45;
	color: var(--brand-orange);
}

.tcard__text strong,
.tcard__list strong {
	font-weight: 700;
	color: var(--text-invert);
}

.tcard__list {
	display: flex;
	flex-direction: column;
	gap: clamp(4px, 0.31vw, 6px);
	margin-top: clamp(8px, 0.63vw, 12px);
	padding-left: clamp(16px, 1.04vw, 20px);
	font-size: clamp(12px, 0.83vw, 16px);
	line-height: 1.45;
	color: rgba(253, 252, 250, 0.72);
}

.tcard__list li {
	list-style: disc;
}

ol.tcard__list li {
	list-style: decimal;
}

.tcard__list--sub {
	margin-top: clamp(4px, 0.31vw, 6px);
}

.tcta {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(46px, 3.13vw, 60px);
	margin-top: clamp(18px, 1.56vw, 30px);
	padding: 8px 20px;
	font-size: clamp(13px, 0.89vw, 17px);
	line-height: 1.3;
	text-align: center;
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-radius: clamp(6px, 0.42vw, 8px);
	transition: background-color var(--transition);
}

.tcta:hover {
	background-color: var(--brand-blue-dark);
}

.tnote {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(8px, 0.83vw, 16px);
	margin-top: clamp(12px, 0.94vw, 18px);
	font-size: clamp(11px, 0.73vw, 14px);
	line-height: 1.3;
	color: rgba(253, 252, 250, 0.45);
}

.tnote a {
	color: rgba(253, 252, 250, 0.7);
	text-decoration: underline;
}

.tnote a:hover {
	color: var(--text-invert);
}

.media {
	position: relative;
	overflow: hidden;
	padding: clamp(40px, 5.21vw, 100px) 0 clamp(36px, 3.65vw, 70px);
	background-color: #141416;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='62' height='62'%3E%3Crect x='5' y='5' width='46' height='46' rx='14' fill='%23fdfcfa' fill-opacity='0.022'/%3E%3C/svg%3E");
}

.media__glow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
}

.media__glow img {
	width: 100%;
	height: auto;
}

.media__inner {
	position: relative;
	width: min(1590px, 100% - clamp(32px, 12vw, 230px));
	margin: 0 auto;
}

.media__head {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.media__kicker {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(16px, 1.72vw, 33px);
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--brand-orange);
}

.media__title {
	margin-top: clamp(4px, 0.42vw, 8px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(28px, 3.13vw, 60px);
	line-height: 1.1;
	text-transform: uppercase;
	color: #2f5cff;
}

.media__lead {
	max-width: 760px;
	margin: clamp(14px, 1.35vw, 26px) auto 0;
	font-weight: 500;
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.35;
	text-transform: uppercase;
	color: var(--text-invert);
}

.media__text {
	max-width: 620px;
	margin: clamp(12px, 1.15vw, 22px) auto 0;
	font-size: clamp(12px, 0.83vw, 16px);
	line-height: 1.45;
	color: rgba(253, 252, 250, 0.62);
}

.media__grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: clamp(8px, 0.94vw, 18px);
	margin-top: clamp(30px, 3.65vw, 70px);
}

.media__item img {
	width: 100%;
	height: auto;
}

.media__foot {
	margin-top: clamp(24px, 2.6vw, 50px);
}

.media__note {
	font-size: clamp(13px, 0.94vw, 18px);
	line-height: 1.5;
	color: rgba(253, 252, 250, 0.72);
}

.media__cta {
	margin-top: clamp(12px, 1.15vw, 22px);
	font-weight: 700;
	font-size: clamp(13px, 0.94vw, 18px);
	line-height: 1.4;
	color: #2f5cff;
}

.clubs {
	position: relative;
	padding: clamp(40px, 4.69vw, 90px) 0 clamp(40px, 4.17vw, 80px);
	background-color: #131315;
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='62' height='62'%3E%3Crect x='5' y='5' width='46' height='46' rx='14' fill='%23fdfcfa' fill-opacity='0.03'/%3E%3C/svg%3E"),
		radial-gradient(46% 34% at 50% 6%, rgba(35, 72, 215, 0.35) 0%, rgba(19, 19, 21, 0) 70%);
}

.clubs__inner {
	width: min(1590px, 100% - clamp(32px, 12vw, 230px));
	margin: 0 auto;
}

.clubs__head {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.clubs__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(28px, 3.44vw, 66px);
	line-height: 1.12;
	text-transform: uppercase;
	color: var(--brand-orange);
}

.clubs__accent {
	display: block;
	color: #2f5cff;
}

.clubs__lead {
	max-width: 760px;
	margin: clamp(14px, 1.35vw, 26px) auto 0;
	font-size: clamp(13px, 0.99vw, 19px);
	line-height: 1.45;
	color: rgba(253, 252, 250, 0.88);
}

.clubs__grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: clamp(8px, 0.94vw, 18px);
	margin-top: clamp(30px, 3.65vw, 70px);
}

.clubs__tile {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 182 / 118;
	padding: clamp(8px, 0.94vw, 18px);
	background-color: #2b2b2b;
	border-radius: clamp(6px, 0.52vw, 10px);
}

.clubs__tile img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.clubs__text {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.2;
	text-align: center;
	color: var(--text-invert);
}

.clubs__tile--light {
	background-color: var(--surface);
}

.clubs__tile--light .clubs__text {
	color: var(--text);
}

.clubs__tile--image {
	padding: 0;
	background-color: transparent;
	border-radius: 0;
}

.clubs__tile--image img {
	width: 100%;
	height: 100%;
}

.join {
	padding: clamp(44px, 5.21vw, 100px) 0 clamp(48px, 5.73vw, 110px);
	background-color: #2a2f7a;
	background-image:
		radial-gradient(52% 108% at 108% 46%, #101028 0%, rgba(16, 16, 40, 0) 62%),
		radial-gradient(78% 104% at 74% 96%, #2a45ea 0%, rgba(42, 69, 234, 0) 62%),
		radial-gradient(58% 86% at 74% -14%, #ec7742 0%, rgba(236, 119, 66, 0) 60%),
		radial-gradient(96% 128% at 10% -18%, #de5527 0%, rgba(222, 85, 39, 0) 64%),
		linear-gradient(126deg, #c04c21 0%, #6b3f92 44%, #2b3bc8 78%, #1d2470 100%);
}

.join__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.join__title {
	max-width: 1000px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(22px, 2.4vw, 46px);
	line-height: 1.24;
	text-transform: uppercase;
	color: var(--text-invert);
}

.join__lead {
	margin-top: clamp(20px, 2.19vw, 42px);
	font-size: clamp(14px, 0.94vw, 18px);
	line-height: 1.5;
	color: var(--text-invert);
}

.join__form {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: clamp(22px, 2.4vw, 46px);
}

.join__fields {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(12px, 1.15vw, 22px);
}

.join__field {
	position: relative;
	display: flex;
	align-items: center;
	width: clamp(260px, 21vw, 330px);
}

.join__icon {
	position: absolute;
	left: clamp(16px, 1.25vw, 24px);
	display: inline-flex;
	color: var(--brand-orange);
	pointer-events: none;
}

.join__icon svg {
	width: clamp(15px, 0.94vw, 18px);
	height: auto;
}

.join__input {
	width: 100%;
	min-height: clamp(48px, 3.44vw, 66px);
	padding: 8px clamp(16px, 1.25vw, 24px) 8px clamp(42px, 3.13vw, 60px);
	font-size: clamp(13px, 0.89vw, 17px);
	line-height: 1.2;
	color: var(--text-invert);
	background-color: rgba(26, 26, 56, 0.32);
	border: 1px solid rgba(253, 252, 250, 0.14);
	border-radius: clamp(12px, 1.04vw, 20px);
	transition: background-color var(--transition), border-color var(--transition);
}

.join__input::placeholder {
	color: rgba(253, 252, 250, 0.65);
}

.join__input:hover {
	border-color: rgba(253, 252, 250, 0.3);
}

.join__input:focus {
	background-color: rgba(26, 26, 56, 0.5);
	border-color: rgba(253, 252, 250, 0.55);
	outline: none;
}

.join__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 0.94vw, 18px);
	min-width: clamp(260px, 21vw, 330px);
	min-height: clamp(48px, 3.44vw, 66px);
	margin-top: clamp(14px, 1.25vw, 24px);
	padding: 8px clamp(20px, 1.56vw, 30px);
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(12px, 0.83vw, 16px);
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #1e1e20;
	background-color: #dcdcdc;
	border-radius: var(--radius-full);
	transition: color var(--transition), background-color var(--transition);
}

.join__btn:hover {
	color: var(--text-invert);
	background-color: var(--brand-dark);
}

.join__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(22px, 1.56vw, 30px);
	height: clamp(22px, 1.56vw, 30px);
	color: #dcdcdc;
	background-color: #1e1e20;
	border-radius: var(--radius-full);
	transition: color var(--transition), background-color var(--transition);
}

.join__btn:hover .join__btn-icon {
	color: #1e1e20;
	background-color: #dcdcdc;
}

.join__btn-icon svg {
	width: clamp(9px, 0.63vw, 12px);
	height: auto;
}

.join__note {
	margin-top: clamp(10px, 0.83vw, 16px);
	font-size: clamp(12px, 0.83vw, 16px);
	line-height: 1.4;
	color: var(--text-invert);
}

.join__note:empty {
	display: none;
}

.gallery {
	padding: clamp(40px, 4.17vw, 80px) 0 clamp(44px, 4.69vw, 90px);
	background-color: #242427;
}

.gallery__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.gallery__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(22px, 1.98vw, 38px);
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	color: var(--text-invert);
}

.gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(12px, 1.67vw, 32px);
	margin-top: clamp(28px, 3.13vw, 60px);
}

.gallery__item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 492 / 257;
	object-fit: cover;
	border-radius: clamp(10px, 0.83vw, 16px);
}

.video {
	padding: clamp(40px, 4.17vw, 80px) 0 clamp(44px, 4.69vw, 90px);
	background-color: #1b1b1e;
}

.video__inner {
	width: min(1590px, 100% - clamp(32px, 17.2vw, 330px));
	margin: 0 auto;
}

.video__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: clamp(22px, 1.98vw, 38px);
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	color: var(--text-invert);
}

.video__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(12px, 1.82vw, 35px);
	margin-top: clamp(28px, 3.13vw, 60px);
}

.video-card {
	position: relative;
	border-radius: clamp(10px, 0.83vw, 16px);
	background-color: #141416;
	overflow: hidden;
	isolation: isolate;
}

.video-card__link,
.video-card__box {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
}

.video-card__poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-card__link::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 52%;
	background-image: linear-gradient(rgba(12, 12, 14, 0) 0%, rgba(12, 12, 14, 0.5) 30%, rgba(12, 12, 14, 1) 70%, rgba(12, 12, 14, 1) 100%);
	pointer-events: none;
}

.video-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(52px, 5.16vw, 99px);
	height: clamp(52px, 5.16vw, 99px);
	background-color: rgba(253, 252, 250, 0.78);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: background-color var(--transition), transform var(--transition);
}

.video-card__play svg {
	width: clamp(16px, 1.56vw, 30px);
	height: auto;
	margin-left: clamp(3px, 0.26vw, 5px);
}

.video-card__link:hover .video-card__play {
	background-color: var(--text-invert);
	transform: translate(-50%, -50%) scale(1.06);
}

.video-card__meta {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(6px, 0.63vw, 12px);
}

.video-card__date {
	padding: 0 clamp(12px, 1.04vw, 20px);
	font-weight: 500;
	font-size: clamp(14px, 1.15vw, 22px);
	line-height: 1.2;
	color: var(--brand-blue-light);
}

.video-card__place {
	display: inline-flex;
	align-items: center;
	min-height: clamp(26px, 1.88vw, 36px);
	padding: 3px clamp(14px, 1.15vw, 22px);
	font-size: clamp(12px, 0.94vw, 18px);
	line-height: 1.2;
	color: var(--text-invert);
	background-color: var(--brand-blue);
	border-radius: 0 clamp(8px, 0.63vw, 12px) 0 0;
}

.video-card__frame {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: none;
}

.video-card--soon .video-card__box {
	background-color: #161618;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Crect x='3' y='3' width='17' height='17' rx='5' fill='%23fdfcfa' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.video-card__logo {
	position: absolute;
	top: clamp(14px, 1.51vw, 29px);
	left: clamp(14px, 1.46vw, 28px);
	width: clamp(84px, 6.3vw, 121px);
}

.video-card__badge {
	position: absolute;
	top: clamp(14px, 1.51vw, 29px);
	right: clamp(14px, 1.46vw, 28px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: clamp(30px, 2.19vw, 42px);
	min-height: clamp(20px, 1.51vw, 29px);
	padding: 2px 8px;
	font-weight: 700;
	font-size: clamp(10px, 0.68vw, 13px);
	line-height: 1;
	text-transform: uppercase;
	color: #1b1b1e;
	background-color: var(--brand-orange);
	border-radius: 4px;
}

.video-card--soon .video-card__play {
	background-color: rgba(253, 252, 250, 0.34);
}

.video-card__soon {
	padding: 0 clamp(12px, 1.04vw, 20px) clamp(12px, 1.15vw, 22px);
	font-weight: 500;
	font-size: clamp(13px, 1.04vw, 20px);
	line-height: 1.25;
	color: var(--brand-orange);
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(12px, 2.2vw, 42px);
}

.modal[hidden] {
	display: none;
}

.modal__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(8, 9, 14, 0.78);
	backdrop-filter: blur(8px);
	animation: modal-fade 0.25s ease both;
}

.modal__window {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(1180px, 100%);
	max-height: 100%;
	padding-top: clamp(38px, 3.4vw, 56px);
	animation: modal-rise 0.32s ease both;
}

.modal__close {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(30px, 2.5vw, 40px);
	height: clamp(30px, 2.5vw, 40px);
	color: var(--text-invert);
	background-color: rgba(253, 252, 250, 0.08);
	border: 1px solid rgba(253, 252, 250, 0.16);
	border-radius: var(--radius-full);
	transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

.modal__close:hover {
	color: var(--text-invert);
	background-color: var(--brand-orange);
	border-color: var(--brand-orange);
}

.modal__close svg {
	width: clamp(11px, 0.9vw, 14px);
	height: auto;
}

.modal__dialog {
	position: relative;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: clamp(22px, 2.5vw, 48px) clamp(18px, 2.5vw, 48px) clamp(24px, 2.6vw, 50px);
	background-color: #0d0e14;
	background-image:
		radial-gradient(120% 100% at 0% 45%, rgba(21, 59, 202, 0.9) 0%, rgba(13, 14, 20, 0) 62%),
		radial-gradient(90% 85% at 100% 8%, rgba(35, 72, 215, 0.6) 0%, rgba(13, 14, 20, 0) 60%),
		radial-gradient(70% 70% at 50% 120%, rgba(35, 72, 215, 0.35) 0%, rgba(13, 14, 20, 0) 70%);
	border: 1px solid rgba(253, 252, 250, 0.08);
	border-radius: clamp(16px, 1.4vw, 28px);
	box-shadow: 0 40px 90px rgba(4, 5, 10, 0.55);
}

.modal__dialog:focus,
.modal__dialog:focus-visible {
	outline: none;
}

.modal__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(14px, 1.6vw, 30px);
}

.modal__title {
	font-weight: 700;
	font-size: clamp(22px, 2.29vw, 44px);
	line-height: 1.12;
	color: var(--text-invert);
}

.modal__next {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: clamp(42px, 3.85vw, 74px);
	height: clamp(42px, 3.85vw, 74px);
	color: var(--brand-orange);
	background-color: transparent;
	border: 1px solid rgba(253, 252, 250, 0.16);
	border-radius: var(--radius-full);
	transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

.modal__next:hover {
	color: var(--text-invert);
	background-color: var(--brand-orange);
	border-color: var(--brand-orange);
}

.modal__next svg {
	width: clamp(9px, 0.83vw, 16px);
	height: auto;
}

.modal__body {
	margin-top: clamp(12px, 1.05vw, 20px);
}

.modal__lead {
	max-width: 1010px;
	font-size: clamp(14px, 0.99vw, 19px);
	line-height: 1.45;
	color: var(--text-invert);
}

.modal__lead strong {
	font-weight: 700;
}

.modal__subtitle {
	margin-top: clamp(4px, 0.42vw, 8px);
	font-size: clamp(13px, 0.94vw, 18px);
	line-height: 1.4;
	color: rgba(253, 252, 250, 0.82);
}

.modal__panel {
	margin-top: clamp(18px, 1.67vw, 32px);
	padding: clamp(18px, 1.77vw, 34px) clamp(16px, 1.77vw, 34px);
	background-color: rgba(253, 252, 250, 0.04);
	border: 1px solid rgba(253, 252, 250, 0.07);
	border-radius: clamp(14px, 1.15vw, 22px);
}

.modal__list {
	display: flex;
	flex-direction: column;
	gap: clamp(12px, 1.15vw, 22px);
}

.modal__list--plain {
	gap: clamp(9px, 0.78vw, 15px);
}

.modal__item {
	position: relative;
	padding-left: clamp(38px, 3.1vw, 60px);
	font-size: clamp(14px, 0.99vw, 19px);
	line-height: 1.45;
	color: var(--text-invert);
}

.modal__item::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: clamp(24px, 1.77vw, 34px);
	height: clamp(24px, 1.77vw, 34px);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 34' fill='none' stroke='%23f4623a' stroke-width='1.6'%3E%3Ccircle cx='17' cy='17' r='16'/%3E%3Cpath d='M11 17h12M18.5 12.5 23 17l-4.5 4.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

.modal__list--plain .modal__item {
	padding-left: clamp(32px, 2.71vw, 52px);
	font-size: clamp(13px, 0.89vw, 17px);
}

.modal__list--plain .modal__item::before {
	top: 0;
	width: clamp(20px, 1.51vw, 29px);
	height: clamp(20px, 1.51vw, 29px);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 34' fill='none' stroke='%239aa8d8' stroke-width='1.6'%3E%3Ccircle cx='17' cy='17' r='16'/%3E%3Cpath d='M11 17h12M18.5 12.5 23 17l-4.5 4.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.modal__item strong {
	font-weight: 700;
}

.modal__notes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(12px, 1.15vw, 22px);
	margin-top: clamp(14px, 1.25vw, 24px);
}

.modal__note {
	padding: clamp(14px, 1.15vw, 22px);
	font-size: clamp(12px, 0.83vw, 16px);
	line-height: 1.45;
	color: rgba(253, 252, 250, 0.78);
	background-color: rgba(253, 252, 250, 0.05);
	border: 1px solid rgba(253, 252, 250, 0.07);
	border-radius: clamp(12px, 0.94vw, 18px);
}

.modal--partner .modal__dialog {
	background-image:
		radial-gradient(95% 80% at 0% 0%, rgba(21, 59, 202, 0.9) 0%, rgba(13, 14, 20, 0) 58%),
		radial-gradient(85% 75% at 72% 68%, rgba(214, 74, 40, 0.42) 0%, rgba(13, 14, 20, 0) 62%),
		radial-gradient(70% 60% at 100% 12%, rgba(35, 72, 215, 0.35) 0%, rgba(13, 14, 20, 0) 60%);
}

.modal__label {
	color: var(--brand-orange);
}

@keyframes modal-fade {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes modal-rise {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1500px) {
	.inv__grid,
	.prj__grid,
	.prt__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1280px) {
	.media__grid,
	.clubs__grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.tickets__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 1280px) {
	.hero__building {
		max-width: 64%;
	}

	.info__apply .btn {
		min-width: 260px;
	}
}

@media (max-width: 1200px) {
	.header__note {
		display: none;
	}
}

@media (max-width: 1024px) {
	:root {
		--header-height: 72px;
	}

	.map__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: clamp(24px, 4vw, 44px);
	}

	.map__scheme {
		overflow-x: auto;
		padding-bottom: 8px;
	}

	.map__scheme img {
		min-width: 620px;
	}

	.map__info {
		max-width: 720px;
	}

	.map__list {
		margin-top: clamp(22px, 3.5vw, 40px);
	}

	.nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		z-index: 55;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 32px;
		width: 100%;
		height: calc(100svh - var(--header-height));
		padding: 32px var(--container-padding) 40px;
		background-color: var(--brand-dark);
		transform: translateX(100%);
		transition: transform var(--transition);
		overflow-y: auto;
	}

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

	.nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
	}

	.nav__link {
		font-size: 21px;
	}

	.nav__extra {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.nav__extra .header__note {
		display: block;
		max-width: none;
		font-size: 14px;
		text-align: left;
	}

	.header__consult {
		display: none;
	}

	.header__ticket {
		display: inline-flex;
		min-height: 46px;
		padding: 6px 22px;
		font-size: 15px;
	}

	.header__call {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		background-color: var(--brand-blue);
		border-radius: 50%;
		transition: background-color var(--transition);
	}

	.header__call:hover {
		background-color: var(--brand-blue-dark);
	}

	.burger {
		display: flex;
	}

	.info__inner {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"timer"
			"apply"
			"place";
		justify-items: center;
		gap: 24px;
		text-align: center;
	}

	.info__place {
		justify-content: center;
		text-align: left;
	}

	.info__apply {
		flex-direction: column;
		gap: 14px;
		width: 100%;
		max-width: 520px;
	}

	.info__apply .btn {
		width: 100%;
	}

	.info__apply-text {
		max-width: 420px;
		text-align: center;
	}

	.grid--4,
	.stats,
	.roles__grid,
	.numbers__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cats__inner,
	.inv__inner,
	.video__inner,
	.prj__head-inner,
	.prj__inner,
	.band__inner,
	.prt__inner {
		width: 100%;
		padding-inline: var(--container-padding);
	}

	.cats__glow {
		height: clamp(240px, 44vw, 460px);
	}

	.cats__lead {
		grid-template-columns: minmax(0, 1fr);
		gap: clamp(18px, 3vw, 28px);
	}

	.cats__intro {
		padding-top: 0;
	}

	.cats__intro-text {
		max-width: 620px;
	}

	.registration {
		grid-template-columns: minmax(0, 1fr);
	}

	.forum__grid {
		gap: clamp(22px, 3vw, 40px) clamp(20px, 3.5vw, 48px);
	}

	.fact__num {
		font-size: clamp(70px, 9vw, 120px);
		transform: translate(28%, -50%);
	}

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

	.footer__bottom {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

@media (max-width: 900px) {
	.space {
		min-height: 0;
	}

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

	.tgrid {
		columns: 1;
	}

	.night__row {
		grid-template-columns: minmax(0, 1fr);
	}

	.night__row--reverse .night__media {
		order: 0;
	}

	.night__row--reverse .night__body {
		align-items: flex-start;
		margin-left: 0;
		text-align: left;
	}

	.night__row--reverse .night__item {
		flex-direction: row;
	}

	.night__body {
		max-width: none;
	}

	.day__row {
		grid-template-columns: minmax(0, 1fr);
	}

	.day__row--reverse .day__media {
		order: 0;
	}

	.day__row--reverse .day__body {
		align-items: flex-start;
		margin-left: 0;
		text-align: left;
	}

	.day__body {
		max-width: none;
	}

	.program {
		flex-direction: column;
		min-height: 0;
	}

	.program__media {
		position: static;
		order: 2;
		height: auto;
		margin-top: clamp(24px, 4vw, 40px);
	}

	.program__media img {
		width: 100%;
		height: auto;
	}

	.program__inner {
		padding-bottom: 0;
	}

	.program__text {
		max-width: none;
	}

	.space__media {
		top: auto;
		height: clamp(170px, 40vw, 300px);
	}

	.space__media img {
		object-position: 100% 0;
	}

	.space__content {
		max-width: none;
	}

	.space__inner {
		padding-bottom: clamp(190px, 44vw, 330px);
	}

	.space__more {
		align-items: flex-start;
		padding-right: 0;
	}

	.space__note {
		text-align: left;
	}

	.prj__head-inner {
		flex-direction: column;
	}

	.prj__aside {
		align-items: flex-start;
		max-width: 100%;
		text-align: left;
	}

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

	.hero {
		align-items: flex-start;
		min-height: 0;
		padding-bottom: clamp(200px, 34vw, 300px);
	}

	.hero__building {
		right: 0;
		left: 0;
		width: 100%;
		height: clamp(220px, 40vw, 360px);
		max-width: none;
		object-fit: cover;
		object-position: center top;
		-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 22%);
		mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 22%);
	}

	.hero__content {
		max-width: 560px;
	}

	.hero__facts {
		order: -1;
	}

	.hero__lead {
		text-transform: uppercase;
	}

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

	.founder__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
		justify-items: center;
		text-align: center;
	}

	.founder__content {
		order: -1;
		align-items: center;
		padding-bottom: clamp(24px, 4vw, 40px);
	}

	.founder__quote {
		text-align: left;
	}

	.founder__photo {
		max-width: 360px;
	}

	.founder__plate {
		width: 100%;
		justify-content: center;
		padding-inline: var(--container-padding);
		border-radius: 0;
		text-align: center;
	}

	.people__col:nth-child(n + 3) {
		display: none;
	}

	.people__center {
		max-width: 620px;
	}

	.people__col {
		width: 11vw;
		height: calc(var(--col-h) / 1920 * 135vw);
		border-radius: 5.5vw 5.5vw 0 0;
	}

	.forum__grid {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"photo-stage"
			"fact-1"
			"fact-2"
			"photo-hall"
			"fact-3"
			"fact-4";
		gap: clamp(24px, 4vw, 40px);
	}

	.forum__photo {
		max-width: 560px;
		margin: 0 auto;
		justify-self: center;
	}

	.fact {
		max-width: 560px;
		margin: 0 auto;
	}

	.fact__num {
		font-size: clamp(64px, 16vw, 110px);
		transform: translate(10%, -50%);
	}

	.program__item {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.cats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(12px, 2vw, 18px);
	}

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

	.inv__head {
		max-width: 620px;
	}

	.cat:last-child {
		grid-column: 1 / -1;
		flex-direction: row;
		align-items: center;
		text-align: left;
	}

	.cat:last-child .cat__media {
		flex-shrink: 0;
		width: 42%;
		align-self: stretch;
		aspect-ratio: auto;
	}

	.cat:last-child .cat__body {
		align-items: flex-start;
	}

	.cat:last-child .cat__text {
		margin-bottom: clamp(12px, 2vw, 18px);
	}

	.cat:last-child .cat__badge {
		margin-top: 0;
	}
}

@media (max-width: 768px) {
	.info {
		background: var(--surface-2);
	}

	.info__timer {
		color: var(--text);
	}

	.info__timer-label {
		color: var(--text-muted);
	}

	.timer {
		width: 100%;
		max-width: 460px;
	}

	.timer__item {
		border-left-color: var(--border);
	}

	.timer__label {
		color: var(--text-muted);
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: 420px;
		gap: 12px;
	}

	.hero__hint {
		padding: 12px 24px;
		margin-right: 0;
		text-align: center;
	}

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

	.cta .btn {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.people {
		display: flex;
		flex-direction: column;
		padding-bottom: 0;
	}

	.people__center {
		order: -1;
	}

	.people__wall {
		position: static;
		justify-content: center;
		gap: 8px;
		margin-top: clamp(28px, 6vw, 46px);
	}

	.people__wall--right {
		display: none;
	}

	.people__col {
		width: 28vw;
		height: 38vw;
		border-radius: 14vw 14vw 0 0;
	}

	.people__col:nth-child(n + 4) {
		display: none;
	}
}

@media (max-width: 640px) {
	.video__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.prj__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.gallery__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.join__field,
	.join__btn {
		width: 100%;
	}

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

	.tickets__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.tfacts {
		grid-template-columns: minmax(0, 1fr);
	}

	.prj__title {
		font-size: clamp(28px, 8.2vw, 40px);
	}

	.prj__text {
		font-size: clamp(13px, 3.6vw, 16px);
	}

	.prj-card__logo {
		aspect-ratio: auto;
		height: clamp(150px, 42vw, 230px);
	}

	.modal__notes {
		grid-template-columns: minmax(0, 1fr);
	}

	.prj__more-btn {
		width: 100%;
	}

	:root {
		--header-height: 66px;
		--radius-l: 20px;
	}

	.inv__grid,
	.prt__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.inv__head {
		max-width: 310px;
		margin-right: 0;
	}

	.inv__title {
		font-size: clamp(28px, 8.2vw, 40px);
	}

	.inv__year {
		font-size: clamp(90px, 27vw, 150px);
		transform: translate(-50%, -20%);
	}

	.inv__text {
		font-size: clamp(13px, 3.6vw, 16px);
		text-transform: none;
	}

	.invest__photo {
		aspect-ratio: 16 / 11;
	}

	.cats__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.cat:last-child {
		grid-column: auto;
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.cat:last-child .cat__media {
		width: 100%;
		aspect-ratio: 512 / 234;
	}

	.cat:last-child .cat__body {
		align-items: center;
	}

	.cat:last-child .cat__text {
		margin-bottom: clamp(14px, 3vw, 20px);
	}

	.cat:last-child .cat__badge {
		margin-top: auto;
	}

	.header__inner {
		gap: 10px;
	}

	.header__ticket {
		min-height: 42px;
		padding: 6px 18px;
		font-size: 14px;
	}

	.header__call,
	.burger {
		width: 40px;
		height: 40px;
	}

	.grid--2,
	.grid--3,
	.grid--4,
	.roles__grid {
		grid-template-columns: 1fr;
	}

	.role {
		min-height: 0;
		gap: 34px;
	}

	.roles__title {
		max-width: 260px;
		margin-left: auto;
		margin-right: auto;
	}

	.founder__plate {
		flex-direction: column;
		gap: 14px;
	}

	.founder__quote {
		align-items: flex-start;
	}

	.numbers__grid {
		gap: 10px;
	}

	.numbers__subtitle {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}

	.promo {
		background-image:
			radial-gradient(70% 60% at 50% 82%, rgba(30, 62, 205, 0.92) 0%, rgba(38, 70, 200, 0.6) 45%, rgba(212, 212, 212, 0) 78%),
			linear-gradient(160deg, #d4d4d4 0%, #d4d4d4 32%, #8fa0d6 58%, #4a63c3 82%, #3f57bd 100%);
	}

	.pill--light,
	.pill--file {
		margin-left: 0;
	}

	.band::after {
		background-color: rgba(18, 20, 26, 0.62);
	}

	.pill {
		width: 100%;
		justify-content: flex-start;
	}

	.numbers__divider {
		display: none;
	}

	.stat {
		aspect-ratio: 300 / 230;
		padding: 16px 14px;
	}

	.form__row {
		grid-template-columns: 1fr;
	}

	.hero__badge {
		padding: 10px 18px;
		font-size: 14px;
	}

	.hero__actions {
		display: none;
	}

	.forum__photo--hall,
	.forum__photo--stage {
		transform: none;
	}

	.forum__head {
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}

	.fact__num {
		font-size: 70px;
		color: rgba(0, 0, 0, 0.2);
		transform: translate(26%, -50%);
	}

	.hero__actions,
	.hero__content {
		max-width: none;
		width: 100%;
	}

	.hero__facts {
		gap: 12px;
		font-size: 13px;
	}

	.info__place {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.footer__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.footer__socials {
		gap: 22px;
	}

	.footer__grid,
	.footer__bottom {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 480px) {
	.stats {
		grid-template-columns: 1fr;
	}

	.timer__item {
		padding: 0 6px;
	}

	.timer__value {
		font-size: 24px;
	}

	.timer__label {
		font-size: 10px;
		letter-spacing: 0.06em;
	}

	.header__ticket span {
		display: none;
	}

	.program__tab {
		width: 100%;
	}
}

@media (max-width: 380px) {
	.header__logo img {
		width: 84px;
	}

	.header__ticket {
		padding: 6px 14px;
	}

	.hero__title {
		font-size: 30px;
	}
}

@media (max-width: 900px) and (orientation: landscape) {
	.hero {
		padding-top: calc(var(--header-height) + 32px);
	}
}

@media (hover: none) {
	.card:hover,
	.btn:hover,
	.cat:hover,
	.cat:focus-within,
	.invest:hover,
	.prj-card:hover,
	.partner:hover {
		transform: none;
		box-shadow: none;
	}

	.cat:hover .cat__media img,
	.cat:focus-within .cat__media img {
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
