.rd-datamimic {
	overflow-x: hidden;
	background: #050607;
	font-family: "Inter", sans-serif;
}

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

.rd-datamimic__container {
	width: min(100%, 1200px);
	margin-inline: auto;
	padding-inline: 24px;
}

.rd-datamimic__hero,
.rd-datamimic__section--dark {
	background: #050607;
	color: #fff;
}

.rd-datamimic__hero-inner {
	display: flex;
	align-items: center;
	gap: 60px;
	padding-block: 120px;
}

.rd-datamimic__hero-content {
	order: -1;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.rd-datamimic__hero-title {
	max-width: 760px;
	margin: 0;
	font-size: 48px;
	line-height: 58px;
}

.rd-datamimic__hero-intro {
	max-width: 760px;
	margin: 0;
	color: #a9b4bb;
	font-size: 16px;
	line-height: 24px;
}

.rd-datamimic__hero-logo {
	flex: none;
}

.rd-datamimic__hero-logo img {
	display: block;
	width: 250px;
	height: auto;
}

.rd-datamimic__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 10px 20px;
	border: 1px solid;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -.02em;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.rd-button--dark {
	border-color: rgba(255, 255, 255, .3);
	background: rgba(255, 255, 255, .05);
	color: #fff;
}

.rd-button--light {
	border-color: #50828e;
	background: rgba(80, 130, 142, .1);
	color: #335f68;
}

.rd-button--dark:hover {
	border-color: #fff;
	background-color: rgba(255, 255, 255, .1);
	color: #fff;
}

.rd-button--light:hover {
	border-color: currentColor;
	background-color: rgba(80, 130, 142, .2);
}

.rd-button:focus-visible,
.rd-datamimic__use-link:focus-visible,
.rd-faq__question:focus-visible {
	outline: 2px solid #37d9ff;
	outline-offset: 4px;
}

.rd-datamimic__section--light {
	background: #f5f5f5;
	color: #181b25;
}

.rd-datamimic__section-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-block: clamp(56px, 8vh, 128px);
}

.rd-datamimic__section-title {
	margin: 0 0 60px;
	text-align: center;
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1.05;
}

.rd-datamimic__section-description {
	max-width: 100%;
	margin: -48px 0 60px;
	color: #525866;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
}

.rd-datamimic__section--dark .rd-datamimic__section-description {
	color: #a9b4bb;
}

.rd-datamimic__benefit-grid {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 24px;
}

@keyframes rd-datamimic-benefit-reveal {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

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

.rd-datamimic__benefit-card {
	grid-column: span 4;
}

.rd-datamimic__benefit-card:nth-child(4) {
	grid-column: span 6;
}

.rd-datamimic__benefit-card:nth-child(5),
.rd-datamimic__benefit-card:nth-child(6) {
	grid-column: span 3;
}

.rd-datamimic__benefit-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	padding: 24px;
	border: 1px solid #99a0ae;
	border-radius: 28px;
	background: #f5f5f5;
	animation: rd-datamimic-benefit-reveal 600ms cubic-bezier(.22, 1, .36, 1) both;
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.rd-datamimic__benefit-card:nth-child(2) {
	animation-delay: 80ms;
}

.rd-datamimic__benefit-card:nth-child(3) {
	animation-delay: 160ms;
}

.rd-datamimic__benefit-card:nth-child(4) {
	animation-delay: 240ms;
}

.rd-datamimic__benefit-card:nth-child(5) {
	animation-delay: 320ms;
}

.rd-datamimic__benefit-card:nth-child(6) {
	animation-delay: 400ms;
}

.rd-datamimic__benefit-card:hover {
	border-color: #293442;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
	transform: translateY(-4px);
}

.rd-datamimic__benefit-icon {
	display: flex;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	color: #50828e;
}

.rd-datamimic__benefit-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rd-datamimic__benefit-card h3 {
	margin: 0;
	color: #181b25;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -.01em;
}

.rd-datamimic__benefit-card p {
	margin: 0;
	color: #525866;
	font-size: 14px;
	line-height: 1.6;
}

.rd-datamimic__how .rd-datamimic__section-description {
	margin-bottom: 0;
}

.rd-datamimic__diagram-frame {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 32px;
	padding: 32px 0;
	border: 2px dashed #525866;
	border-radius: 16px;
	overflow: hidden;
}

.rd-datamimic__diagram-frame img {
	display: block;
	width: 100%;
	height: auto;
}

.rd-datamimic__use-cases .rd-datamimic__section-inner {
	align-items: flex-start;
}

.rd-datamimic__use-cases .rd-datamimic__section-title,
.rd-datamimic__use-cases .rd-datamimic__section-description {
	align-self: center;
}

.rd-datamimic__use-grid {
	display: grid;
	overflow: hidden;
	width: 100%;
	grid-template-columns: 58.333% 41.667%;
	border: 1px solid #99a0ae;
	border-radius: 28px;
	background: #f5f5f5;
}

.rd-datamimic__use-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	padding: 32px;
}

.rd-datamimic__use-card--1 {
	grid-row: span 2;
	border-right: 1px solid #99a0ae;
}

.rd-datamimic__use-card--3 {
	border-top: 1px solid #99a0ae;
}

.rd-datamimic__use-card h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 29px;
}

.rd-datamimic__use-card--1 h3 {
	font-size: 48px;
	line-height: 58px;
}

.rd-datamimic__use-body {
	color: #525866;
	font-size: 16px;
	line-height: 24px;
}

.rd-datamimic__use-body p {
	margin: 0 0 16px;
}

.rd-datamimic__use-body p:last-child {
	margin-bottom: 0;
}

.rd-datamimic__use-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	margin-top: 4px;
	color: #335f68;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-decoration: none;
	transition: gap 200ms ease;
}

.rd-datamimic__use-link:hover {
	gap: 12px;
}

.rd-datamimic__cta {
	position: relative;
	isolation: isolate;
	width: 100%;
	height: clamp(750px, 56.25vw, 810px);
	min-height: 750px;
	max-height: 810px;
	overflow: hidden;
	background-color: #f5f5f5;
}

.rd-datamimic__cta::before {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 50%;
	width: min(100%, 1200px);
	background: url("../../assets/media/Computer-On-White.webp") bottom right / 70% auto no-repeat;
	content: "";
	pointer-events: none;
	transform: translateX(-50%);
}

.rd-datamimic__cta::after {
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 50%;
	width: min(1280px, calc(100% + 160px));
	background: url("../../assets/media/Computer-On-White.webp") bottom right / 70% auto no-repeat;
	content: "";
	pointer-events: none;
	filter: blur(24px);
	opacity: .9;
	transform: translateX(-50%) scale(1.02);
	-webkit-mask-image: linear-gradient(to bottom, #000 0, transparent 28px, transparent calc(100% - 28px), #000 100%);
	mask-image: linear-gradient(to bottom, #000 0, transparent 28px, transparent calc(100% - 28px), #000 100%);
}

.rd-datamimic__cta-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-block: 60px 80px;
}

.rd-datamimic__cta h2 {
	max-width: 700px;
	margin: 0;
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.2;
}

.rd-datamimic__cta p {
	max-width: 560px;
	margin: 12px 0 0;
	color: #525866;
	font-size: 16px;
	line-height: 1.6;
}

.rd-datamimic__cta .rd-button {
	margin-top: 32px;
}

@media (max-width: 1024px) {
	.rd-datamimic__hero-inner {
		flex-direction: column;
		justify-content: center;
		gap: 32px;
		padding-block: 60px;
	}

	.rd-datamimic__hero-content {
		order: 0;
		align-items: center;
		gap: 32px;
		text-align: center;
	}

	.rd-datamimic__hero-title {
		font-size: 36px;
		line-height: 44px;
	}

	.rd-datamimic__hero-logo img {
		width: 180px;
	}

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

	.rd-datamimic__benefit-card,
	.rd-datamimic__benefit-card:nth-child(4),
	.rd-datamimic__benefit-card:nth-child(5),
	.rd-datamimic__benefit-card:nth-child(6) {
		grid-column: auto;
	}

	.rd-datamimic__use-grid {
		grid-template-columns: 1fr;
	}

	.rd-datamimic__use-card--1 {
		grid-row: auto;
		border-right: 0;
	}

	.rd-datamimic__use-card--2,
	.rd-datamimic__use-card--3 {
		border-top: 1px solid #99a0ae;
	}

	.rd-datamimic__use-card {
		padding: 22.72px 16px;
	}

	.rd-datamimic__use-card--1 h3 {
		font-size: 28px;
		line-height: 34px;
	}

	.rd-datamimic__cta-inner {
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.rd-datamimic__container {
		padding-inline: 16px;
	}

	.rd-datamimic__hero-inner {
		padding-block: 40px;
	}

	.rd-datamimic__hero-title {
		font-size: 32px;
		line-height: 39px;
	}

	.rd-datamimic__hero-logo img {
		width: 150px;
	}

	.rd-datamimic__benefit-grid {
		grid-template-columns: 1fr;
	}

	.rd-datamimic__section-inner {
		padding-block: clamp(48px, 7vh, 60px);
	}

	.rd-datamimic__section-title {
		margin-bottom: 60px;
		font-size: clamp(36px, 7vw, 48px);
	}

	.rd-datamimic__section-description {
		margin-top: -48px;
		text-align: left;
	}

	.rd-datamimic__use-card {
		padding: 17.54px 16px;
	}

	.rd-datamimic__cta::before {
		background-position: bottom center;
		background-size: auto 50%;
	}

	.rd-datamimic__cta-inner {
		padding-block: 48px 64px;
	}
}

@media (max-width: 600px) {
	.rd-datamimic__actions {
		flex-direction: column;
		width: 100%;
	}

	.rd-datamimic__actions .rd-button {
		width: 100%;
	}

	.rd-datamimic__section-inner {
		padding-block: clamp(40px, 7vh, 48px);
	}

	.rd-datamimic__section-title {
		font-size: clamp(26px, 7vw, 34px);
	}

	.rd-datamimic__cta {
		min-height: 750px;
	}

	.rd-datamimic__cta-inner {
		padding-block: 40px 56px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rd-datamimic__benefit-card,
	.rd-datamimic__use-link,
	.rd-button {
		animation: none;
		transition: none;
	}

	.rd-datamimic__benefit-card:hover {
		transform: none;
	}
}
