.vtx-home-hero {
	position: relative;
	background: #fff;
	color: #404040;
	font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vtx-home-hero__pattern {
	position: absolute;
	right: 0;
	bottom: 48px;
	z-index: 0;
	display: block;
	width: 384px;
	height: 352px;
	max-width: none;
	pointer-events: none;
	background: url("../../vantixb-assets/brand/pattern-02.svg") right bottom / contain no-repeat;
	opacity: 0.75;
	-webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
}

.vtx-home-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100%, 1280px);
	margin: 0 auto;
	padding: 40px 24px 64px;
}

.vtx-home-hero__copy {
	min-width: 0;
}

.vtx-home-hero__heading {
	max-width: 576px;
	margin: 0;
	color: #404040;
	font-size: var(--text-h1, 52px);
	line-height: var(--text-h1--line-height, 1.15);
	font-weight: 700;
	letter-spacing: var(--text-h1--letter-spacing, -0.025em);
	white-space: pre-line;
}

.vtx-home-hero__body {
	max-width: 576px;
	margin: 20px 0 0;
	color: #5a5959;
	font-size: var(--text-body-lg, 18px);
	line-height: var(--text-body-lg--line-height, 32px);
	font-weight: 400;
	letter-spacing: 0;
	white-space: pre-line;
}

.vtx-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.vtx-home-hero__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 10px 20px;
	overflow: hidden;
	border-radius: 9999px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	letter-spacing: 0;
	text-decoration: none;
	transition: transform 420ms ease, box-shadow 420ms ease, background-color 420ms ease, border-color 420ms ease;
}

.vtx-home-hero__button--primary {
	background: linear-gradient(135deg, #ff4c2c 0%, #ff6214 23%, #ff8417 52%, #ffb217 77%, #ffda52 100%);
	color: #fff;
	box-shadow: 0 18px 38px rgba(255, 98, 20, 0.18);
}

.vtx-home-hero__button--secondary {
	border: 1px solid rgba(64, 64, 64, 0.14);
	background: rgba(255, 255, 255, 0.8);
	color: #404040;
}

.vtx-home-hero__button:hover,
.vtx-home-hero__button:focus-visible {
	transform: translateY(-2px);
	outline: none;
}

.vtx-home-hero__button--primary:hover,
.vtx-home-hero__button--primary:focus-visible {
	box-shadow: 0 18px 38px rgba(255, 98, 20, 0.18);
}

.vtx-home-hero__button--secondary:hover,
.vtx-home-hero__button--secondary:focus-visible {
	background: rgba(255, 255, 255, 0.8);
}

.vtx-home-hero__button-icon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.vtx-home-hero__visual {
	position: relative;
	min-width: 0;
	margin-top: 64px;
}

.vtx-home-hero__frame {
	position: relative;
	width: 100%;
	max-width: 480px;
	aspect-ratio: 4 / 5;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 18px;
	background: #404040;
	box-shadow: 0 24px 60px rgba(64, 64, 64, 0.1);
}

.vtx-home-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vtx-home-hero__mockup {
	position: absolute;
	left: 50%;
	bottom: -80px;
	width: 160px;
	transform: translateX(-50%) scale(1.375);
	transform-origin: bottom;
}

@media (min-width: 640px) {
	.vtx-home-hero__mockup {
		left: 24px;
		bottom: -24px;
		width: 224px;
		transform: translateX(0) scale(1.5);
		transform-origin: bottom right;
	}
}

@media (min-width: 1024px) {
	.vtx-home-hero__pattern {
		bottom: 64px;
	}

	.vtx-home-hero__inner {
		display: grid;
		grid-template-columns: repeat(12, minmax(0, 1fr));
		align-items: center;
		gap: 48px;
		padding: 24px 40px 48px;
	}

	.vtx-home-hero__copy,
	.vtx-home-hero__visual {
		grid-column: span 6 / span 6;
	}

	.vtx-home-hero__visual {
		margin-top: 0;
	}

	.vtx-home-hero__frame {
		margin-right: 0;
		margin-left: auto;
	}
}

@media (max-width: 639px) {
	.vtx-home-hero__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.vtx-home-hero__button {
		width: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vtx-home-hero__button {
		transition: none;
	}
}
