.obi-hero {
	--obi-accent: #7C3AED;

	position: relative;
	overflow: hidden;
	padding: 0 5%;
	font-family: 'Poppins', sans-serif;
}

.obi-hero__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-color: transparent;
	z-index: 0;
}

.obi-hero__decor {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.obi-hero__shape {
	position: absolute;
	border-radius: 24px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--obi-accent) 35%, transparent), color-mix(in srgb, var(--obi-accent) 10%, transparent));
}

.obi-hero__shape--1 {
	width: 220px;
	height: 220px;
	top: -60px;
	right: 8%;
	transform: rotate(20deg);
	opacity: 0.5;
}

.obi-hero__shape--2 {
	width: 140px;
	height: 140px;
	bottom: 6%;
	right: 22%;
	transform: rotate(35deg);
	opacity: 0.35;
}

.obi-hero__shape--3 {
	width: 90px;
	height: 90px;
	top: 40%;
	right: 2%;
	transform: rotate(15deg);
	opacity: 0.25;
}

/**
 * Main Section — a 2-column grid holding exactly two Containers.
 * Grid is used instead of flex justify-content:space-between so the
 * layout can never "stretch apart" when it collapses to one column
 * on mobile (grid-template-columns handles that transition cleanly).
 */
.obi-hero__main {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 48px;
}

.obi-hero__container {
	min-width: 0;
}

.obi-hero__container--content {
	max-width: 560px;
}

.obi-hero__eyebrow {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--obi-accent);
}

.obi-hero__heading {
	margin: 0 0 20px;
	font-size: 56px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #1E1B4B;
}

.obi-hero__heading-line,
.obi-hero__heading-highlight {
	display: block;
}

.obi-hero__heading-highlight {
	color: var(--obi-accent);
}

.obi-hero__description {
	margin: 0 0 32px;
	font-size: 18px;
	line-height: 1.6;
	color: #52525B;
	max-width: 460px;
}

.obi-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.obi-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.obi-hero__btn:hover {
	transform: translateY(-2px);
	opacity: 0.92;
}

.obi-hero__btn--primary {
	background-color: var(--obi-accent);
	border-color: var(--obi-accent);
	color: #fff;
	box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--obi-accent) 60%, transparent);
}

.obi-hero__btn--secondary {
	background-color: #fff;
	border-color: #E4E4E7;
	color: #1E1B4B;
}

.obi-hero__btn-arrow {
	font-size: 15px;
	line-height: 1;
}

.obi-hero__scroll {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #71717A;
}

.obi-hero__scroll-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	color: #71717A;
}

.obi-hero__container--image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.obi-hero__platform {
	position: absolute;
	bottom: 6%;
	left: 50%;
	transform: translateX(-50%);
	width: 78%;
	height: 64px;
	border-radius: 50%;
	background: radial-gradient(closest-side, #fff 0%, color-mix(in srgb, var(--obi-accent) 18%, #fff) 100%);
	box-shadow: 0 30px 60px -20px color-mix(in srgb, var(--obi-accent) 35%, transparent);
}

.obi-hero__image-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.obi-hero__image {
	max-width: 100%;
	height: auto;
	max-height: 460px;
	filter: drop-shadow(0 30px 40px rgba(30, 27, 75, 0.25));
}

@media (max-width: 1024px) {
	.obi-hero__heading {
		font-size: 44px;
	}
}

@media (max-width: 900px) {
	.obi-hero__main {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 24px;
	}

	.obi-hero__container--content {
		max-width: 100%;
		margin: 0 auto;
	}

	.obi-hero__description {
		margin-left: auto;
		margin-right: auto;
	}

	.obi-hero__actions {
		justify-content: center;
	}

	.obi-hero__scroll {
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.obi-hero {
		padding: 0 6%;
	}

	.obi-hero__heading {
		font-size: 34px;
	}

	.obi-hero__description {
		font-size: 16px;
	}
}
