.nio-town-hero {
	--nio-town-hero-desktop: none;
	--nio-town-hero-mobile: var(--nio-town-hero-desktop);
	--nio-town-hero-overlay: 0.48;
	--nio-town-hero-position: center center;
	position: relative;
	display: grid;
	min-height: clamp(420px, 54vw, 680px);
	overflow: hidden;
	color: #fff;
	background-color: #07172b;
	background-image: linear-gradient(rgba(4, 13, 30, var(--nio-town-hero-overlay)), rgba(4, 13, 30, var(--nio-town-hero-overlay))), var(--nio-town-hero-desktop);
	background-position: var(--nio-town-hero-position);
	background-size: cover;
	background-repeat: no-repeat;
}

.nio-town-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: end;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: clamp(72px, 9vw, 132px) 0 clamp(96px, 10vw, 148px);
}

.nio-town-hero__content {
	width: min(720px, 100%);
}

.nio-town-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	margin-bottom: 14px;
	padding: 4px 10px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(3, 13, 28, 0.42);
	color: #8ee6ff;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nio-town-hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(3rem, 8vw, 6.25rem);
	line-height: 0.95;
	font-weight: 900;
	letter-spacing: 0;
	text-wrap: balance;
}

.nio-town-hero p {
	max-width: 680px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1.08rem, 2vw, 1.55rem);
	line-height: 1.45;
	font-weight: 700;
}

.nio-town-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.nio-town-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 8px;
	font-size: 0.94rem;
	font-weight: 800;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.nio-town-hero__button:hover,
.nio-town-hero__button:focus {
	transform: translateY(-1px);
	text-decoration: none;
}

.nio-town-hero__button--primary {
	background: linear-gradient(135deg, #22c55e, #14b8a6);
	color: #031322;
	box-shadow: 0 14px 28px rgba(20, 184, 166, 0.28);
}

.nio-town-hero__button--secondary {
	border: 1px solid rgba(255, 255, 255, 0.38);
	background: rgba(7, 23, 43, 0.46);
	color: #fff;
}

.nio-town-hero__strip {
	position: absolute;
	right: 0;
	bottom: clamp(20px, 2.4vw, 30px);
	left: 0;
	z-index: 4;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	pointer-events: none;
}

.nio-town-hero__strip .nio-live-strip {
	margin: 0;
	pointer-events: auto;
}

@media (max-width: 767px) {
	.nio-town-hero {
		min-height: 520px;
		background-image: linear-gradient(rgba(4, 13, 30, var(--nio-town-hero-overlay)), rgba(4, 13, 30, var(--nio-town-hero-overlay))), var(--nio-town-hero-mobile);
	}

	.nio-town-hero__inner {
		width: min(100% - 28px, 680px);
		padding-top: 84px;
		padding-bottom: 112px;
	}

	.nio-town-hero h1 {
		font-size: clamp(2.8rem, 17vw, 4.6rem);
	}

	.nio-town-hero p {
		font-size: 1.08rem;
	}

	.nio-town-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.nio-town-hero__strip {
		bottom: clamp(12px, 4vw, 18px);
		width: min(100% - 20px, 680px);
	}
}
