:root {
	--bg: #0b0b0c;
	--bg-2: #101013;
	--panel: #121216;
	--text: #e9e9ef;
	--muted: #a8a8b3;
	--line: rgba(255,255,255,0.08);
	--red: #e11437;
	--red-soft: 255 35 72;
	--radius: 16px;
	--shadow-soft: 0 10px 30px rgba(0,0,0,0.35), 0 2px 10px rgba(0,0,0,0.2);
	--shadow-glow: 0 0 0 1px rgba(var(--red-soft) / 0.20), 0 10px 50px rgba(var(--red-soft) / 0.12), inset 0 0 60px rgba(var(--red-soft) / 0.06);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: radial-gradient(1200px 600px at 70% -10%, rgba(var(--red-soft) / 0.08), transparent 60%), var(--bg);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.5;
}

.container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	background: rgba(15,15,18,0.6);
	backdrop-filter: blur(10px);
	transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
	background: rgba(12,12,16,0.82);
	border-bottom-color: rgba(255,255,255,0.1);
	box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 64px;
}

.brand {
	flex: 1 1 auto;
	min-width: 0;
}

.brand__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.3px;
	color: var(--text);
	text-decoration: none;
	white-space: nowrap;
}

.brand__link span {
	background: linear-gradient(90deg, #ff546f, #b80f2d);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nav {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.btn {
	--btn-bg: #1a1a1f;
	--btn-br: #282830;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 42px;
	padding: 0 16px;
	border-radius: 10px;
	border: 1px solid var(--btn-br);
	background: var(--btn-bg);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	box-shadow: var(--shadow-soft);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
	transform: translateY(-1px);
	border-color: rgba(var(--red-soft) / 0.35);
	box-shadow: 0 0 0 1px rgba(var(--red-soft) / 0.2), 0 12px 40px rgba(var(--red-soft) / 0.18);
}

.btn--primary {
	--btn-bg: linear-gradient(180deg, rgba(var(--red-soft) / 0.16), rgba(var(--red-soft) / 0.06));
	--btn-br: rgba(255,255,255,0.08);
	box-shadow: var(--shadow-glow);
}

.nav .btn.btn--primary {
	height: 38px;
	padding: 0 14px;
	border-radius: 999px;
}

.section {
	position: relative;
	padding: 76px 0;
}

.hero {
	padding: 92px 0 42px;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.hero__content {
	text-align: center;
}

.hero__title {
	margin: 0 0 12px;
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	line-height: 1.05;
}

.hero__kicker {
	margin: 0;
	font-size: 0.98rem;
	color: var(--muted);
}

.hero__content #domain-search {
	margin-top: 34px;
}

.domain-search,
.search-wrap {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.animated-border {
	padding: 2px;
	border-radius: 20px;
	background: linear-gradient(90deg, rgba(var(--red-soft) / 0.42), rgba(var(--red-soft) / 0.08), rgba(var(--red-soft) / 0.42));
	background-size: 300% 300%;
	animation: borderShift 8s linear infinite;
}

@keyframes borderShift {
	0% { background-position: 0% 50%; }
	100% { background-position: 100% 50%; }
}

.search-form {
	width: 100%;
	max-width: 100%;
	box-shadow: 0 10px 40px rgba(var(--red-soft) / 0.15);
	overflow: hidden;
}

.search-form__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 10px;
	height: 56px;
	padding: 0 0 0 14px;
	border-radius: 18px;
	background: linear-gradient(180deg, #0d0d11, #0f0f14);
	overflow: hidden;
}

.search-form__icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #656567;
	opacity: 0.9;
	pointer-events: none;
}

.search-form__icon svg {
	display: block;
	width: 21px;
	height: 21px;
}

.input {
	height: 48px;
	padding: 0 14px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.08);
	background: #111116;
	color: var(--text);
	outline: none;
}

.search-form__inner .input {
	grid-column: 1;
	height: 100%;
	padding: 0 0 0 44px;
	line-height: 56px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #d5d5dc;
	min-width: 0;
}

.input--search {
	font-size: 17px;
}

.search-gen {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	min-width: 134px;
	max-width: 134px;
	padding: 0 14px;
	margin: 0;
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
	color: #d9d9e0;
	font-size: 11px;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-gen::before {
	content: "✨";
	font-size: 11px;
	line-height: 1;
	margin-right: 6px;
	flex: 0 0 auto;
}

.search-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-width: 88px;
	padding: 0 18px;
	border: 0;
	border-radius: 0 18px 18px 0;
	background: linear-gradient(180deg, rgba(var(--red-soft) / 0.92), rgba(var(--red-soft) / 0.72));
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.search-btn::after {
	content: "";
	width: 16px;
	height: 16px;
	margin-left: 8px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/><path d='M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
}

.search-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.popular-domains {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.popular-domains__label {
	font-size: 12px;
	color: var(--muted);
}

.popular-domains__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.popular-domains__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.09);
	background: rgba(255,255,255,0.02);
	color: #d9d9e0;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.popular-domains__item:hover {
	transform: translateY(-1px);
	border-color: rgba(var(--red-soft) / 0.35);
	background: rgba(var(--red-soft) / 0.08);
	color: #fff;
}

.bot-cta {
	padding-top: 8px;
	padding-bottom: 18px;
}

.bot-cta__inner {
	display: flex;
	justify-content: center;
}

.bot-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 260px;
	height: 58px;
	padding: 0 28px;
	border-radius: 999px;
	border: 1px solid rgba(var(--red-soft) / 0.28);
	background: linear-gradient(180deg, rgba(var(--red-soft) / 0.22), rgba(var(--red-soft) / 0.08));
	box-shadow: 0 0 0 1px rgba(var(--red-soft) / 0.16), 0 18px 40px rgba(var(--red-soft) / 0.18);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.bot-cta__icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.bot-cta__button:hover {
	background: linear-gradient(180deg, rgba(var(--red-soft) / 0.3), rgba(var(--red-soft) / 0.12));
	box-shadow: 0 0 0 1px rgba(var(--red-soft) / 0.22), 0 20px 48px rgba(var(--red-soft) / 0.24);
}

.benefits {
	padding-top: 48px;
	padding-bottom: 90px;
}

.section__head {
	text-align: center;
	margin-bottom: 22px;
}

.section__title {
	margin: 0 0 8px;
	font-size: 2rem;
}

.section__desc {
	max-width: 680px;
	margin: 0 auto;
	color: var(--muted);
}

.feature-slider {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
}

.feature-slider__viewport {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	border: 1px solid rgba(255,255,255,0.06);
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
	box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.feature-slider__track {
	position: relative;
	min-height: 320px;
}

.feature-slide {
	position: absolute;
	inset: 0;
	margin: 0;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transform: translateX(40px);
	transition: opacity .38s ease, transform .38s ease;
}

.feature-slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
	z-index: 1;
}

.feature-slide.is-entering-from-right,
.feature-slide.is-entering-from-left {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.feature-slide.is-entering-from-right {
	transform: translateX(40px);
}

.feature-slide.is-entering-from-left {
	transform: translateX(-40px);
}

.feature-slide.is-leaving-to-left,
.feature-slide.is-leaving-to-right {
	opacity: 0;
	pointer-events: none;
	z-index: 1;
}

.feature-slide.is-leaving-to-left {
	transform: translateX(-40px);
}

.feature-slide.is-leaving-to-right {
	transform: translateX(40px);
}

.feature-slide__caption {
	display: inline-block;
	max-width: min(760px, 100%);
	margin: 0 0 18px;
	padding: 12px 16px;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,0.05);
	background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
	font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 0.96rem;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
	color: rgba(243,243,247,0.92);
}

.feature-slide__lead {
	display: inline;
}

.feature-slide__lead-icon {
	width: 18px;
	height: auto;
	display: inline-block;
	margin-right: 8px;
	vertical-align: -0.12em;
	opacity: 0.96;
}

.feature-slide__accent {
	display: inline;
	padding: 0 0.26em 0.08em;
	border-radius: 0.5em;
	background: linear-gradient(180deg, rgba(var(--red-soft) / 0.06), rgba(var(--red-soft) / 0.2));
	box-shadow: inset 0 -1px 0 rgba(var(--red-soft) / 0.24), 0 0 0 1px rgba(var(--red-soft) / 0.08);
	color: #fff7f8;
}

.feature-slide__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 22px;
}

.feature-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border-radius: 999px;
	border: none;
	background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(var(--red-soft) / 0.08));
	box-shadow: 0 12px 26px rgba(0,0,0,0.22);
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
	z-index: 2;
}

.feature-slider__nav--prev {
	left: 16px;
}

.feature-slider__nav--next {
	right: 16px;
}

.feature-slider__nav:hover {
	border-color: rgba(var(--red-soft) / 0.5);
	box-shadow: 0 16px 32px rgba(var(--red-soft) / 0.18);
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(var(--red-soft) / 0.14));
}

.feature-slider__nav-icon {
	display: block;
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.feature-slider__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.feature-slider__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,0.18);
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, width .2s ease;
}

.feature-slider__dot.is-active {
	width: 26px;
	background: linear-gradient(90deg, rgba(var(--red-soft) / 0.95), rgba(var(--red-soft) / 0.62));
}

.feature-slider__dot:hover {
	transform: scale(1.05);
	background: rgba(255,255,255,0.3);
}

.bg-grid {
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(60% 50% at 50% 0%, #000 30%, transparent 100%);
	opacity: 0.22;
}

.bg-glow {
	position: fixed;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.55;
	mix-blend-mode: screen;
	pointer-events: none;
}

.bg-glow--top {
	top: -160px;
	right: -60px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle at 30% 30%, rgba(var(--red-soft) / 0.6), transparent 60%);
}

.bg-glow--center {
	bottom: 10%;
	left: -120px;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle at 40% 40%, rgba(var(--red-soft) / 0.5), transparent 65%);
}

.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}

	.header-inner {
		min-height: 62px;
	}

	.brand__link {
		font-size: 0.95rem;
	}

	.nav .btn.btn--primary {
		height: 38px;
		padding: 0 14px;
	}

	.hero {
		padding: 74px 0 32px;
	}

	.search-wrap,
	.domain-search {
		max-width: 100%;
	}

	.search-form__inner {
		height: 54px;
		gap: 8px;
	}

	.search-form__inner .input {
		line-height: 54px;
	}

	.search-gen {
		height: 34px;
		min-width: 122px;
		max-width: 122px;
		padding: 0 14px;
		font-size: 11px;
	}

	.search-btn {
		min-width: 82px;
		padding: 0 14px;
	}

	.popular-domains {
		margin-top: 12px;
		gap: 8px;
	}

	.feature-slider {
	}

	.feature-slider__viewport {
		border-radius: 24px;
	}

}

@media (max-width: 560px) {
	.container {
		padding: 0 14px;
	}

	.header-inner {
		min-height: 58px;
		gap: 8px;
	}

	.brand__link {
		font-size: 0.92rem;
	}

	.nav .btn.btn--primary {
		height: 36px;
		padding: 0 12px;
	}

	.hero {
		padding: 58px 0 24px;
	}

	.hero__title {
		font-size: clamp(2rem, 10vw, 2.8rem);
		margin-bottom: 10px;
	}

	.hero__kicker {
		font-size: 0.92rem;
	}

	.hero__content #domain-search {
		margin-top: 24px;
	}

	.search-form__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 6px;
		height: 52px;
		padding-left: 12px;
		border-radius: 16px;
	}

	.search-form__icon {
		left: 14px;
	}

	.search-form__icon svg {
		width: 20px;
		height: 20px;
	}

	.search-form__inner .input {
		padding-left: 40px;
		line-height: 52px;
		font-size: 16px;
	}

	.search-gen {
		height: 32px;
		min-width: 110px;
		max-width: 110px;
		padding: 0 12px;
		font-size: 9px;
	}

	.search-gen::before {
		margin-right: 5px;
		font-size: 10px;
	}

	.search-btn {
		min-width: 68px;
		padding: 0 10px;
		font-size: 14px;
	}

	.popular-domains {
		align-items: center;
		justify-content: center;
		gap: 8px;
		margin-top: 12px;
	}

	.popular-domains__list {
		justify-content: center;
		gap: 6px;
	}

	.popular-domains__item {
		min-height: 28px;
		padding: 0 10px;
		font-size: 11px;
	}

	.feature-slider {
	}

	.feature-slider__viewport {
		border-radius: 20px;
	}

	.feature-slider__track {
		min-height: 180px;
	}

	.feature-slide {
		padding: 14px;
	}

	.feature-slide.is-entering-from-right {
		transform: translateX(24px);
	}

	.feature-slide.is-entering-from-left {
		transform: translateX(-24px);
	}

	.feature-slide.is-leaving-to-left {
		transform: translateX(-24px);
	}

	.feature-slide.is-leaving-to-right {
		transform: translateX(24px);
	}

	.feature-slide__caption {
		margin-bottom: 12px;
		padding: 10px 12px;
		border-radius: 14px;
		font-size: 0.84rem;
		line-height: 1.55;
	}

	.feature-slide__lead-icon {
		width: 17px;
		margin-right: 6px;
		vertical-align: -0.14em;
	}

	.feature-slide__image {
		border-radius: 16px;
	}

	.feature-slider__nav {
		top: 50%;
		bottom: auto;
		transform: translateY(-50%);
		width: 38px;
		height: 38px;
	}

	.feature-slider__nav--prev {
		left: 12px;
	}

	.feature-slider__nav--next {
		right: 12px;
	}

	.feature-slider__nav-icon {
		width: 14px;
		height: 14px;
	}

	.section {
		padding: 64px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}

@media (max-width: 768px) {
	.bot-cta {
		padding-top: 4px;
		padding-bottom: 14px;
	}
}

@media (max-width: 560px) {
	.bot-cta {
		padding-top: 2px;
		padding-bottom: 12px;
	}

	.bot-cta__button {
		width: 100%;
		min-width: 0;
		max-width: 320px;
		height: 52px;
		padding: 0 20px;
		font-size: 0.88rem;
		letter-spacing: 0.12em;
	}

	.bot-cta__icon {
		width: 17px;
		height: 17px;
	}
}
