.rr-hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 28px 0 34px;
	background:
		radial-gradient(circle at 78% 17%, rgba(255, 124, 23, 0.08), transparent 19rem),
		radial-gradient(circle at 62% 75%, rgba(8, 119, 242, 0.09), transparent 23rem),
		linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.rr-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(15deg, transparent 0 43%, rgba(8, 119, 242, 0.13) 43.1%, transparent 43.55%),
		linear-gradient(163deg, transparent 0 44%, rgba(255, 124, 23, 0.11) 44.1%, transparent 44.45%),
		linear-gradient(171deg, transparent 0 52%, rgba(139, 92, 246, 0.12) 52.1%, transparent 52.42%);
	opacity: 0.64;
	pointer-events: none;
}

.rr-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
	align-items: center;
	gap: clamp(28px, 2.6vw, 50px);
	width: min(100% - 48px, 1680px);
	min-height: 510px;
	margin: 0 auto;
	padding: 0;
}

.rr-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 620px;
}

.rr-hero__title {
	max-width: 620px;
	margin: 0;
	color: var(--rr-ink);
	font-size: clamp(4.8rem, 5.65vw, 6.7rem);
	font-style: italic;
	line-height: 0.88;
	letter-spacing: 0;
}

.rr-hero__title-line {
	display: block;
	white-space: nowrap;
}

.rr-hero__title-line--blue {
	color: var(--rr-blue);
}

.rr-hero__description {
	max-width: 510px;
	margin: 24px 0 29px;
	color: #253653;
	font-size: 1.06rem;
	line-height: 1.48;
}

.rr-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.rr-hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.82rem;
	min-width: 218px;
	min-height: 64px;
	padding: 0 1.48rem;
	border-radius: 16px;
	color: #ffffff;
	font-size: 1.03rem;
	line-height: 1;
	box-shadow: 0 15px 25px rgba(8, 119, 242, 0.28);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.rr-hero-button:hover {
	transform: translateY(-1px);
}

.rr-hero-button--primary {
	background: linear-gradient(135deg, #1486ff 0%, #005ff0 100%);
}

.rr-hero-button--primary:hover {
	box-shadow: 0 18px 31px rgba(8, 119, 242, 0.34);
}

.rr-hero-button--secondary {
	background: linear-gradient(135deg, #ff981b 0%, #ff520e 100%);
	box-shadow: 0 15px 25px rgba(255, 93, 12, 0.3);
}

.rr-hero-button--secondary:hover {
	box-shadow: 0 18px 31px rgba(255, 93, 12, 0.37);
}

.rr-hero-button__icon {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border-radius: 50%;
	background: #ffffff;
}

.rr-hero-button__icon--play::before {
	width: 0;
	height: 0;
	margin-left: 2px;
	content: "";
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 10px solid #1478f4;
}

.rr-hero-button__icon--run {
	background: transparent;
}

.rr-hero-button__run-icon {
	display: block;
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.rr-hero__media {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-width: 0;
}

.rr-hero__image {
	display: block;
	width: min(100%, 1020px);
	height: auto;
	filter: drop-shadow(0 21px 26px rgba(6, 23, 68, 0.12));
}

@media (max-width: 1180px) {
	.rr-hero__inner {
		grid-template-columns: minmax(0, 510px) minmax(0, 1fr);
		gap: 26px;
		min-height: 450px;
		width: min(100% - 32px, 1180px);
		padding: 0;
	}

	.rr-hero__content {
		max-width: 510px;
	}

	.rr-hero__title {
		max-width: 510px;
		font-size: clamp(3.9rem, 6vw, 5.35rem);
	}

	.rr-hero__image {
		width: min(100%, 780px);
	}
}

@media (max-width: 940px) {
	.rr-hero {
		padding: 42px 0 34px;
	}

	.rr-hero__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		min-height: 0;
	}

	.rr-hero__content,
	.rr-hero__title {
		max-width: 100%;
	}

	.rr-hero__title {
		font-size: clamp(3.35rem, 11vw, 5.1rem);
	}

	.rr-hero__description {
		max-width: 560px;
	}

	.rr-hero__media {
		justify-content: center;
	}

	.rr-hero__image {
		width: min(100%, 760px);
	}
}

@media (max-width: 620px) {
	.rr-hero {
		padding: 34px 0 28px;
	}

	.rr-hero__inner {
		width: min(100% - 1.2rem, 620px);
		padding: 0;
	}

	.rr-hero__title {
		font-size: clamp(2.75rem, 13vw, 4rem);
	}

	.rr-hero__description {
		margin: 20px 0 24px;
		font-size: 0.98rem;
	}

	.rr-hero__actions {
		gap: 12px;
	}

	.rr-hero-button {
		width: 100%;
		min-width: 0;
		min-height: 58px;
	}
}