* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	background: #0d0d0d;
	min-height: 100vh;
	color: #fff;
	overflow-x: hidden;
}
button{
    	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(120, 119, 198, .10) 0%, transparent 50%),
		radial-gradient(circle at 85% 80%, rgba(99, 102, 241, .10) 0%, transparent 50%);
}

input {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}


nav {
	background: rgba(13, 13, 13, .8);
	backdrop-filter: blur(10px);
	padding: 14px 20px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, .05);
	position: sticky;
	top: 0;
	z-index: 120;
}

.logo {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -.5px
	 
}

.nav-buttons {
	margin-left: auto;
	display: flex;
	gap: 12px;
	align-items: center;
}

.btn {
	padding: 10px 18px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all .2s cubic-bezier(.4, 0, .2, 1);
	border: 1px solid transparent;
	cursor: pointer;
	color: #fff;
	background: transparent;
}

.btn-outline {
	background: transparent;
	color: rgba(255, 255, 255, .7);
	border-color: rgba(255, 255, 255, .12)
}

.btn-outline:hover {
	background: rgba(255, 255, 255, .06);
	color: #fff;
	border-color: rgba(255, 255, 255, .2)
}

.btn-primary {
	background: #6366f1;
	border-color: #6366f1
}

.btn-primary:hover {
	background: #5558e3;
	transform: translateY(-1px)
}

.btn-primary:disabled {
	opacity: .4;
	cursor: not-allowed
}

.hero {
	text-align: center;
	padding: 90px 20px 50px;
	position: relative;
	z-index: 1
}

.hero h1 {
	font-size: 56px;
	margin-bottom: 16px;
	font-weight: 700;
	letter-spacing: -2px;
	background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, .65) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: fadeInUp .6s ease-out;
}

.hero p {
	font-size: 18px;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, .55);
	font-weight: 400;
	animation: fadeInUp .6s ease-out .1s backwards
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.claim-section {
	background: rgba(18, 18, 18, .6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 16px;
	padding: 32px 24px;
	max-width: 720px;
	margin: 0 auto 72px;
	position: relative;
	z-index: 1;
	animation: fadeInUp .6s ease-out .2s backwards;
	overflow: visible;
}

.claim-section h2 {
	color: #fff;
	font-size: 26px;
	margin-bottom: 20px;
	font-weight: 600;
	letter-spacing: -.8px
}

.username-input-group {
	display: flex;
	gap: 12px;
	align-items: stretch;
	margin-bottom: 8px;
	flex-wrap: wrap;
	width: 100%;
}

.input-wrapper {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.input-inline {
	display: flex;
	align-items: center;
	height: 52px;
	gap: 0;
	border: 1.5px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	background: rgba(0, 0, 0, .4);
	transition: border-color .2s, box-shadow .2s, background .2s;
	overflow: hidden;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.input-inline:focus-within {
	border-color: rgba(99, 102, 241, .55);
	background: rgba(0, 0, 0, .5);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, .16)
}

.domain-prefix {
	flex: 0 0 auto;
	white-space: nowrap;
	padding: 0 8px 0 14px;
	color: rgba(255, 255, 255, .38);
	font-size: 15px;
	font-weight: 500;
	max-width: 34%;
	overflow: hidden;
	text-overflow: ellipsis;
	user-select: none
}

#usernameInput {
	flex: 1 1 auto;
	min-width: 0 !important;
	height: 100%;
	border: none;
	outline: none;
	background: transparent;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	padding: 0 14px;
	width: 100%;
	box-sizing: border-box
}

#usernameInput::placeholder {
	color: rgba(255, 255, 255, .28);
	font-weight: 400
}

.availability {
	min-height: 20px;
	font-size: 13px;
	font-weight: 500;
	padding-left: 2px
}

.available {
	color: #10b981
}

.unavailable {
	color: #ef4444
}

.checking {
	color: #6366f1
}

.btn-claim {
	height: 52px;
	padding: 0 22px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	background: #6366f1;
	border: 1.5px solid #6366f1;
	color: #fff;
	flex: 0 0 auto
}

.btn-claim:hover:not(:disabled) {
	background: #5558e3;
	border-color: #5558e3
}

.btn-claim {
	box-sizing: border-box;
	max-width: 100%;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px 80px;
	position: relative;
	z-index: 1
}

.feature {
	text-align: center;
	padding: 32px 24px;
	background: rgba(18, 18, 18, .4);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, .05);
	border-radius: 16px;
	transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.feature:hover {
	background: rgba(18, 18, 18, .6);
	border-color: rgba(255, 255, 255, .1);
	transform: translateY(-4px)
}

.feature-icon {
	width: 56px;
	height: 56px;
	display: inline-grid;
	place-items: center;
	margin: 0 auto 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .08);
	font-size: 24px;
	opacity: .95
}

.feature h3 {
	font-size: 18px;
	margin-bottom: 8px;
	color: #fff;
	font-weight: 600;
	letter-spacing: -.3px
}

.feature p {
	color: rgba(255, 255, 255, .55);
	font-size: 14px;
	line-height: 1.5
}

footer {
	text-align: center;
	padding: 40px 20px;
	color: rgba(255, 255, 255, .35);
	font-size: 14px;
	border-top: 1px solid rgba(255, 255, 255, .05)
}

:root {
	--bg-1: #070708;
	--bg-2: #0f1113;
	--muted: #a8a8ad;
	--soft: #cfcfd6;
	--accent-start: #7c7fff;
	--accent-end: #00d4ff;
	--glass: rgba(255, 255, 255, 0.03);
	--max-width: 1100px;
	--pad: 20px;
	--radius: 12px
}

.site-footer {
	background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
	color: var(--muted);
	padding: 44px var(--pad) 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-sizing: border-box
}

.footer-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
	align-items: start
}

.footer-col h4 {
	color: #fff;
	font-size: 15px;
	margin-bottom: 12px;
	font-weight: 600
}

.brand {
	color: #fff;
	margin: 0 0 8px;
	font-size: 18px;
	letter-spacing: 0.3px;
	font-weight: 700
}

.tagline {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
	max-width: 320px
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.footer-col li {
	margin-bottom: 8px;
	font-size: 14px;
	color: var(--muted)
}

.footer-col a {
	color: var(--muted);
	text-decoration: none;
	position: relative;
	transition: color .18s ease, transform .12s ease;
	outline: none
}

.footer-col a::after {
	content: "";
	height: 2px;
	width: 0%;
	background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
	position: absolute;
	left: 0;
	bottom: -4px;
	transition: width .18s ease;
	border-radius: 2px
}

.footer-col a:hover,
.footer-col a:focus {
	color: var(--soft)
}

.footer-col a:hover::after,
.footer-col a:focus::after {
	width: 100%
}

.contact .dots {
	display: flex;
	gap: 8px;
	margin-bottom: 12px
}

.contact .dots span {
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.01) inset
}

.contact p,
.contact p a {
	margin: 0;
	color: var(--muted);
	font-weight: 500;
	font-size: 14px
}

.social-links {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center
}

.social-btn {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: var(--glass);
	color: var(--soft);
	text-decoration: none;
	transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
	font-size: 16px;
	border: 1px solid rgba(255, 255, 255, 0.03)
}

.social-btn:hover,
.social-btn:focus {
	transform: translateY(-4px) scale(1.04);
	background: linear-gradient(135deg, rgba(124, 127, 255, 0.12), rgba(0, 212, 255, 0.06));
	color: #fff;
	box-shadow: 0 6px 18px rgba(12, 12, 20, 0.5);
	outline: none
}

.footer-bottom {
	max-width: var(--max-width);
	margin: 22px auto 0;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.02);
	color: #9a9aa0;
	font-size: 13px;
	text-align: center
}

.back-to-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.04);
	color: var(--muted);
	display: grid;
	place-items: center;
	font-size: 14px;
	cursor: pointer;
	transition: transform .18s ease, opacity .18s ease;
	opacity: 0;
	pointer-events: none;
	z-index: 60
}

.back-to-top.show {
	opacity: 1;
	pointer-events: auto
}

.back-to-top:hover,
.back-to-top:focus {
	transform: translateY(-4px);
	color: var(--soft);
	background: linear-gradient(135deg, rgba(124, 127, 255, 0.08), rgba(0, 212, 255, 0.04));
	outline: none
}

a:focus-visible,
.social-btn:focus-visible,
.back-to-top:focus-visible {
	box-shadow: 0 0 0 4px rgba(124, 127, 255, 0.12);
	border-radius: 8px
}

@media (prefers-reduced-motion: reduce) {

	.social-btn,
	.back-to-top,
	.footer-col a {
		transition: none;
		transform: none
	}
}

@media (max-width:768px) {
	.hero h1 {
		font-size: 36px
	}

	.hero p {
		font-size: 16px
	}

	nav {
		padding: 12px 16px
	}

	.claim-section {
		padding: 24px 16px
	}

	.username-input-group {
		flex-direction: column;
		gap: 10px
	}

	.input-wrapper {
		flex-basis: auto;
		min-width: 0;
		width: 100%
	}

	.input-inline {
		height: 48px
	}

	.btn-claim {
		width: 100%;
		display: block;
		margin-top: 6px
	}

	.domain-prefix {
		padding-left: 12px;
		max-width: 40%;
		overflow: hidden;
		text-overflow: ellipsis
	}

	#usernameInput {
		padding: 0 12px
	}

	.nav-buttons {
		display: none
	}

	.mobile-menu {
		display: none
	}

	.site-footer {
		padding: 28px 14px
	}

	.brand {
		font-size: 16px
	}

	.tagline {
		max-width: 100%
	}

	.contact .dots {
		display: none
	}

	.social-links {
		justify-content: center
	}
}

@media (max-width:420px) {
	.hero h1 {
		font-size: 30px
	}

	.domain-prefix {
		font-size: 14px;
		max-width: 45%
	}

	#usernameInput {
		font-size: 14px
	}
}

.hamburger {
	display: none;
}

.hamburger {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.03);
	cursor: pointer;
	align-items: center;
	justify-content: center
}

.hamburger-inner {
	position: relative;
	width: 20px;
	height: 14px
}

.hamburger-inner span {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: #fff;
	display: block;
	border-radius: 2px;
	transition: transform .18s ease, opacity .12s ease
}

.hamburger-inner span:nth-child(1) {
	top: 0
}

.hamburger-inner span:nth-child(2) {
	top: 6px
}

.hamburger-inner span:nth-child(3) {
	top: 12px
}

@media (max-width:768px) {
	.nav-buttons {
		display: none;
		margin-left: 0;
	}

	.hamburger {
		display: flex;
	}
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: min(320px, 86%);
	background: linear-gradient(180deg, rgba(9, 9, 12, 0.98), rgba(16, 16, 20, 0.98));
	box-shadow: -24px 0 40px rgba(0, 0, 0, 0.6);
	padding: 24px;
	z-index: 200;
	transform: translateX(110%);
	transition: transform .28s cubic-bezier(.2, .9, .2, 1);
	display: flex;
	flex-direction: column;
	gap: 18px
}

.mobile-menu.open {
	transform: translateX(0)
}

.mobile-menu .btn {
	width: 100%;
	text-align: left
}

.mobile-menu .close-btn {
	width: 44px;
	height: 44px;
	display: inline-grid;
	place-items: center;
	border-radius: 10px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.03)
}