/**********************************************************
// Body
**********************************************************/
html { height: 100%; }
:root {
	--font-base: 'Inter', 'Segoe UI', arial, verdana, sans-serif;
	--font-heading: 'Space Grotesk', 'Inter', 'Segoe UI', arial, sans-serif;
}
body {
	min-height: 100vh;
	font-family: var(--font-base);
	font-size: 12px;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	}
	
body *,
body *:before,
body *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	}

a:hover { text-decoration: underline; }
a {
	text-decoration: none;
	cursor: pointer;
	}

.Hidden { display: none; }

.Clear       { *zoom: 1; }
.Clear:after { clear: both; }
.Clear:before,
.Clear:after {
	content: " ";
	display: table;
	}

.Trans {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
	}

.No-Select {
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
	}

p {
	padding: 10px;
	line-height: 20px;
	text-align: justify;
	}

#Wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	}

/**********************************************************
// Header
**********************************************************/
#Header {
	min-height: 60px;
	overflow: hidden;
	}

#Header-Inner {
	margin: auto;
	width: 100%;
	max-width: 950px;
	min-width: 200px;
	}
	
#Header-Logo {
	width: 200px;
	height: 60px;
	overflow: hidden;
	float: left;
	}

#Header-Social {
	padding-bottom: 10px;
	text-align: center;
	float: right;
	}

#Header-Social span { display: none;  }
#Header-Social a    { display: block; }

#Header-Social li:hover  { opacity: 1; }
#Header-Social li {
	margin: 10px 5px 0 5px;
	width: 40px;
	height: 40px;
	line-height: 41px;
	display: inline-block;
	-webkit-transition: opacity 0.2s ease;
	   -moz-transition: opacity 0.2s ease;
		-ms-transition: opacity 0.2s ease;
		 -o-transition: opacity 0.2s ease;
		    transition: opacity 0.2s ease;
	opacity: 0.5;
	font-size: 18px;
	}
	
/**********************************************************
// Footer
**********************************************************/
#Footer {
	width: 100%;
	padding: 18px 6px 10px 6px;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: rgba(226, 232, 240, 0.75);
	border-top: 1px solid rgba(148, 163, 184, 0.2);
	margin-top: auto;
}

#Footer strong {
	color: #f8fafc;
}

.footer-tagline {
	font-size: 13px;
	color: rgba(148, 163, 184, 0.8);
}

/**********************************************************
// Section
**********************************************************/
.Section {
	margin: 20px auto 0 auto;
	width: 100%;
	max-width: 950px;
	min-width: 200px;
	min-height: 100px;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
	overflow: hidden;
	}
	
.Section-Title {
	width: 100%;
	height: 36px;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: normal;
	}
	
/**********************************************************
// Section: Domain Details
**********************************************************/
#Details-Picture {
	width: 200px;
	height: 120px;
	overflow: hidden;
	float: left;
	}
	
#Details-Text {
	padding: 24px;
	min-width: 200px;
	line-height: 36px;
	float: left;
	}
	
#Details-Text h1 {
	font-weight: bold;
	font-size: 30px;
	}
	
#Details-Text h2 {
	font-size: 20px;
	}
	
#Details-Right {
	padding-top: 40px;
	width: 200px;
	height: 120px;
	float: right;
	}

#Details-Offer {
	margin: auto;
	width: 150px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	cursor: pointer;
	display: block;
	}
	
#Wrapper #Details-Offer:hover  { text-decoration: none; }
#Wrapper #Details-Offer:active {
	-webkit-box-shadow: 0 0 0 #000;
	   -moz-box-shadow: 0 0 0 #000;
			box-shadow: 0 0 0 #000;
	position: relative;
	top: 2px;
	}
	
/**********************************************************
// Section: Contact Form
**********************************************************/
#Form {
	margin: auto;
	width: 98%;
	padding: 0 1% 15px 1%;
	text-align: center;
	}
	
#Form-Status  {
	margin: 10px 1% 0 1%;
	width: 98%;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 4px;
	overflow: hidden;
	display: none;
	}
	
#Form input,
#Form textarea { border: 0; }
#Form label { display: none; }
	
#Form input[type="text"] {
	margin: 15px 1% 0 1%;
	padding: 7px;
	width: 48%;
	height: 30px;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	float: left;
	}
	
#Form textarea {
	margin: 15px 1% 0 1%;
	padding: 7px;
	width: 98%;
	height: 70px;
	line-height: 20px;
	resize: vertical;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	float: left;
	}

#Form-Submit {
	margin-top: 15px;
	padding: 0;
	width: 120px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	cursor: pointer;
	}
	
#Form-Submit:active {
	-webkit-box-shadow: 0 0 0 #000;
	   -moz-box-shadow: 0 0 0 #000;
			box-shadow: 0 0 0 #000;
	position: relative;
	top: 2px;
	}
	
#Form-Captcha {
	margin: 15px auto 0 auto;
	width: 100%;
	max-width: 304px;
	}
	
#Form-Sending {
	margin: 15px auto 0 auto;
	width: 120px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	display: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	}
	
/**********************************************************
// Section: Domain Stats
**********************************************************/
#Domain-Stats {
	min-height: 160px;
	text-align: center;
	overflow: hidden;
	}
	
#Stats-Top {
	width: 100%;
	padding-bottom: 10px;
	min-height: 110px;
	}
	
#Stats-Bottom {
	width: 100%;
	padding: 0 0 10px 0;
	display: none;
	}

#Domain-Stats li {
	margin-top: 20px;
	width: 24%;
	min-width: 200px;
	height: 90px;
	display: inline-block;
	}
	
#Domain-Stats li h2 { font-size: 1.250em; }
#Domain-Stats li h3 { font-size: 4.5em;   }

#Stats-Toggle {
	width: 100%;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	font-size: 18px;
	}
	
/**********************************************************
// Section: Additional Domain
**********************************************************/
#Additional-Domains { min-height: 160px; }

#Domains-List {
	padding: 10px;
	min-height: 120px;
	overflow: auto;
	text-align: center;
	font-size: 0;
	}

#Domains-List li {
	margin: 10px 2%;
	padding: 0;
	width: 21%;
	min-height: 90px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	}
	
#Domains-List li a:first-child {
	font-weight: bold;
	font-size: 14px;
	}
	
#Domains-List li span {
	margin-top: 5px;
	text-align: justify;
	font-size: 12px;
	display: block;
	}

.Domain-Button {
	margin: 10px auto 0 auto;
	width: 100px;
	height: 24px;
	line-height: 24px;
	font-size: 10px;
	text-transform: uppercase;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	display: block;
	}
	
.Domain-Button:hover  { text-decoration: none; }
.Domain-Button:active {
	-webkit-box-shadow: 0 0 0 #000;
	   -moz-box-shadow: 0 0 0 #000;
			box-shadow: 0 0 0 #000;
	position: relative;
	top: 2px;
	}

/**********************************************************
// 2025 Landing Refresh
**********************************************************/
.hero {
	width: 100%;
	padding: 80px 5% 60px 5%;
	position: relative;
	overflow: visible;
	isolation: isolate;
}

.hero-visual {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: -200px;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(59,130,246,0.35), transparent 45%) no-repeat,
		radial-gradient(circle at 80% 0, rgba(16,185,129,0.25), transparent 55%) no-repeat,
		linear-gradient(135deg, rgba(3,6,23,0.95) 0%, rgba(15,23,42,0.9) 45%, rgba(6,12,24,0.9) 100%);
}

.hero-visual > * {
	position: absolute;
	inset: 0;
}

.hero-container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.9fr);
	gap: 40px;
	align-items: center;
}

.hero-content h1 {
	font-family: var(--font-heading);
	font-size: 54px;
	margin: 10px 0 20px 0;
	color: #f8fafc;
	line-height: 1.1;
	letter-spacing: 0.01em;
}

.hero-content {
	color: #e2e8f0;
}

.hero p {
	padding: 0;
	text-align: left;
}

.hero-pill,
.contact-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 600;
	padding: 8px 14px;
	border: 1px solid rgba(226, 232, 240, 0.35);
	border-radius: 999px;
	color: #bae6fd;
}

.hero-subtitle {
	font-size: 18px;
	line-height: 1.6;
	max-width: 90%;
	color: rgba(226, 232, 240, 0.85);
}

.hero-cta-row {
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.primary-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	border-radius: 999px;
	background: linear-gradient(120deg, #38bdf8, #2563eb);
	color: #0f172a;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 25px 45px rgba(37, 99, 235, 0.5);
}

.primary-cta:hover { text-decoration: none; opacity: 0.9; }

.hero-price-card {
	padding: 18px 24px;
	border-radius: 20px;
	background: rgba(15, 23, 42, 0.65);
	backdrop-filter: blur(24px);
	border: 1px solid rgba(248, 250, 252, 0.2);
	min-width: 260px;
}

.hero-price-card span {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(226, 232, 240, 0.6);
	margin-bottom: 6px;
}

.hero-price-card strong {
	font-size: 22px;
	color: #fef9c3;
}

.hero-highlights {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: rgba(226, 232, 240, 0.9);
	font-size: 16px;
}

.hero-highlights strong {
	color: #94a3b8;
	font-weight: 700;
}

.hero-meta {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
}

.hero-meta div {
	padding: 14px 18px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-meta span {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(148, 163, 184, 0.9);
	margin-bottom: 6px;
}

.hero-meta strong {
	font-size: 16px;
	color: #f8fafc;
}

.hero-panel {
	align-self: stretch;
}

.hero-panel-inner {
	padding: 32px;
	border-radius: 28px;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.55);
	color: #e2e8f0;
}

.hero-panel-inner h3 {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: #93c5fd;
	margin-bottom: 24px;
}

.hero-panel-inner ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero-panel-inner li span {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: rgba(226, 232, 240, 0.6);
	margin-bottom: 6px;
}

.hero-panel-inner li strong {
	font-size: 16px;
	color: #f8fafc;
	line-height: 1.4;
}

.direct-contact {
	border-top: 1px solid rgba(148, 163, 184, 0.3);
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.direct-contact span {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 12px;
	color: rgba(226, 232, 240, 0.6);
}

.direct-contact a {
	color: #7dd3fc;
	font-size: 18px;
	font-weight: 600;
}

.contact-section {
	position: relative;
	padding: 60px 5% 90px 5%;
	color: #e2e8f0;
	overflow: visible;
	margin-top: 0;
	z-index: 1;
}

.contact-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.contact-info {
	background: rgba(5, 9, 26, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.25);
	box-shadow: 0 30px 60px rgba(2, 6, 23, 0.65);
	border-radius: 28px;
	padding: 40px;
	color: #e2e8f0;
	backdrop-filter: blur(18px);
}

.contact-info h2 {
	font-size: 36px;
	margin: 16px 0 12px 0;
	color: #f8fafc;
}

.contact-info p {
	padding: 0;
	line-height: 1.6;
	color: rgba(226, 232, 240, 0.85);
}

.contact-highlights {
	list-style: none;
	margin: 30px 0 20px 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-size: 16px;
}

.contact-highlights li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(226, 232, 240, 0.9);
}

.contact-highlights li:before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #38bdf8;
	box-shadow: 0 0 10px rgba(56, 189, 248, 0.7);
}

.contact-direct {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid rgba(148, 163, 184, 0.35);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.contact-direct span {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(226, 232, 240, 0.7);
}

.contact-direct a {
	color: #fef9c3;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

#Form.contact-form-card {
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(30px);
	border-radius: 30px;
	box-shadow: 0 40px 80px rgba(2, 6, 23, 0.5);
	border: 1px solid rgba(148, 163, 184, 0.3);
	padding: 40px;
	text-align: left;
	width: 100%;
}

#Form.contact-form-card input[type="text"],
#Form.contact-form-card textarea {
	width: 100%;
	margin: 0;
	float: none;
	background: rgba(248, 250, 252, 0.08);
	border: 1px solid rgba(148, 163, 184, 0.25);
	color: #e2e8f0;
}

#Form.contact-form-card input[type="text"] {
	padding: 14px 16px;
	font-size: 15px;
}

#Form.contact-form-card textarea {
	padding: 16px;
	min-height: 140px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 18px;
}

#Form-Status {
	display: none;
	margin-bottom: 18px;
}

.form-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
}

#Form-Submit {
	width: auto;
	padding: 0 32px;
	height: 46px;
	line-height: 46px;
	font-size: 15px;
}

#Form-Sending {
	height: 46px;
	line-height: 46px;
	padding: 0 24px;
}

#Form-Captcha {
	margin-top: 20px;
}

.footer-tagline {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	margin-left: 10px;
	color: rgba(226, 232, 240, 0.7);
}

@media all and (max-width: 1024px) {
	.hero {
		padding: 60px 4%;
	}

	.hero-container {
		grid-template-columns: 1fr;
	}

	.hero-panel {
		order: -1;
	}

	.hero-content h1 {
		font-size: 42px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-inner {
		grid-template-columns: 1fr;
	}

	.contact-section {
		padding: 90px 5% 70px 5%;
	}
}

/**********************************************************
// Media Queries
**********************************************************/
@media all and (max-width: 950px) {
	.Section {
		-webkit-border-radius: 0;
		   -moz-border-radius: 0;
				border-radius: 0;
	}
	
	#Footer {
		margin-top: 40px;
	}
}

@media all and (max-width: 650px) {
	#Details-Picture { display: none; }
	#Details-Right {
		width: 100%;
		clear: both;
		float: none;
		}
		
	#Details-Text {
		padding: 20px 10px;
		width: 100%;
		text-align: center;
		}
		
	#Domains-List {
		height: auto;
		overflow: visible;
		}
	
	#Domains-List li { width: 90%; }
	#Domains-List li span { text-align: center; }

	.hero {
		padding: 45px 5% 35px 5%;
	}

	.hero-content h1 {
		font-size: 34px;
	}

	.hero-subtitle {
		max-width: 100%;
		font-size: 16px;
	}

	.hero-cta-row {
		flex-direction: column;
		align-items: stretch;
	}

	.primary-cta {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.hero-price-card {
		width: 100%;
	}

	.hero-meta {
		grid-template-columns: 1fr;
	}

	.contact-section {
		padding: 45px 5%;
	}

	.contact-info,
	#Form.contact-form-card {
		padding: 28px;
		border-radius: 22px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-info h2 {
		font-size: 28px;
	}
}

@media all and (max-width: 410px) {
	#Header-Logo,
	#Header-Social {
		margin: auto;
		float: none;
		}
		
	.Section-Title { font-size: 12px; }
	
	#Domain-Details h1 { font-size: 22px; }
	
	#Stats-Toggle { font-size: 16px; }
	
	#Form input[type="text"],
	#Form textarea {
		margin: 15px 2% 0 2%;
		padding-left: 2%;
		padding-right: 2%;
		width: 94%;
		}

	.hero-content h1 {
		font-size: 28px;
	}

	.hero-pill,
	.contact-pill {
		font-size: 10px;
		letter-spacing: 0.08em;
	}

	.hero-cta-row {
		gap: 14px;
	}

	.hero-price-card {
		padding: 14px 18px;
	}

	.contact-direct span {
		letter-spacing: 0.1em;
	}
}