:root {
	--lime: #c8f135;
	--violet: #6e2fff;
	--pink: #ff3da6;
	--navy: #0b0d1a;
	--white: #fafff0;
	--card: #13152a;
	--card-2: #12152e;
	--muted: rgba(250, 255, 240, 0.62);
	--border: rgba(250, 255, 240, 0.08);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'DM Sans', sans-serif;
	background:
		radial-gradient(circle at top left, rgba(110, 47, 255, 0.2), transparent 30%),
		radial-gradient(circle at bottom right, rgba(255, 61, 166, 0.12), transparent 35%),
		var(--navy);
	color: var(--white);
	overflow-x: hidden;
}

@media (min-width: 901px) {
	body,
	.btn-lime,
	.btn-ghost,
	.hbtn,
	.btn-sub,
	.svccard,
	.hstcard,
	input,
	select,
	textarea {
		cursor: none;
	}
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

.cursor {
	width: 18px;
	height: 18px;
	background: var(--lime);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width 0.2s ease, height 0.2s ease;
	mix-blend-mode: difference;
}

.cursor.big {
	width: 50px;
	height: 50px;
}

.blob {
	position: fixed;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.2;
	pointer-events: none;
	z-index: 0;
	animation: blobf 12s ease-in-out infinite;
}

.b1 {
	width: 500px;
	height: 500px;
	background: var(--violet);
	top: -150px;
	left: -150px;
}

.b2 {
	width: 400px;
	height: 400px;
	background: var(--pink);
	bottom: -100px;
	right: -100px;
	animation-delay: -4s;
}

.b3 {
	width: 300px;
	height: 300px;
	background: var(--lime);
	top: 40%;
	left: 40%;
	animation-delay: -8s;
}

@keyframes blobf {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(25px, -25px) scale(1.05);
	}
}

.site-header,
section,
.marquee-wrap,
.site-footer {
	position: relative;
	z-index: 1;
}

.site-navigation {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 4rem;
	background: rgba(11, 13, 26, 0.85);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(200, 241, 53, 0.1);
}

.menu-toggle {
	display: none;
	width: 3rem;
	height: 3rem;
	padding: 0.75rem;
	border: 1px solid rgba(250, 255, 240, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.28rem;
	cursor: pointer;
}

.menu-toggle__line {
	width: 1rem;
	height: 2px;
	background: var(--white);
	border-radius: 999px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo,
.flogo,
.stitle,
.hero-title,
.svcname,
.hname,
.hprice,
.pill .amt,
.astat .num,
.fcard h3 {
	font-family: 'Righteous', cursive;
}

.logo {
	font-size: 1.7rem;
	text-decoration: none;
	color: var(--white);
}

.logo span,
.flogo span {
	color: var(--lime);
}

.site-navigation ul {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.site-navigation ul a {
	text-decoration: none;
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

.site-navigation ul a:hover,
.site-navigation ul a:focus-visible {
	color: var(--lime);
}

.site-navigation ul li:last-child > a,
.nav-cta {
	background: var(--lime);
	color: var(--navy) !important;
	padding: 0.6rem 1.5rem;
	border-radius: 100px;
	font-weight: 700 !important;
}

.custom-logo-link,
.flogo .logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.custom-logo-link img {
	max-height: 56px;
	width: auto;
}

.flogo .logo {
	font-size: 1.4rem;
}

.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8rem 2rem 5rem;
}

.hero-tag,
.stag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-tag {
	background: rgba(110, 47, 255, 0.2);
	border: 1px solid rgba(110, 47, 255, 0.4);
	color: #c4aaff;
	padding: 0.4rem 1.2rem;
	border-radius: 100px;
	margin-bottom: 2rem;
	animation: popin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popin {
	from {
		opacity: 0;
		transform: scale(0.8) translateY(10px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.hero-title {
	font-size: clamp(3.5rem, 9vw, 9rem);
	line-height: 0.96;
	margin: 0 0 1.5rem;
	animation: slideup 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.outline,
.filled {
	display: block;
}

.outline {
	-webkit-text-stroke: 2px var(--lime);
	color: transparent;
}

.filled {
	color: var(--lime);
}

@keyframes slideup {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-sub,
.atxt,
.cleft p,
.svcdesc,
.entry-summary,
.entry-content {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--muted);
	font-weight: 300;
}

.hero-sub {
	max-width: 600px;
	margin: 0 0 3rem;
	animation: slideup 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-btns,
.pills,
.flinks,
.chips {
	display: flex;
	flex-wrap: wrap;
}

.hero-btns {
	gap: 1rem;
	justify-content: center;
	animation: slideup 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.btn-lime,
.btn-ghost,
.hbtn,
.btn-sub {
	display: inline-block;
	padding: 1rem 2.5rem;
	border-radius: 100px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	border: none;
	cursor: none;
}

.btn-lime {
	background: var(--lime);
	color: var(--navy);
	font-weight: 700;
}

.btn-lime:hover,
.btn-lime:focus-visible,
.hbtn-fill:hover,
.hbtn-fill:focus-visible,
.btn-sub:hover,
.btn-sub:focus-visible {
	transform: scale(1.03);
	box-shadow: 0 0 30px rgba(200, 241, 53, 0.4);
}

.btn-ghost {
	background: transparent;
	color: var(--white);
	border: 1px solid rgba(250, 255, 240, 0.25);
	font-weight: 600;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
	border-color: var(--lime);
	color: var(--lime);
}

.pills {
	justify-content: center;
	gap: 1.5rem;
	padding: 3rem 2rem 1rem;
}

.pill,
.svccard,
.hstcard,
.chip,
.fcard,
.entry-card,
.acard {
	background: var(--card);
	border: 1px solid var(--border);
}

.pill {
	border-radius: 16px;
	padding: 1.2rem 2rem;
	text-align: center;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pill:hover,
.pill:focus-within {
	transform: translateY(-4px);
	border-color: var(--lime);
	box-shadow: 0 10px 40px rgba(200, 241, 53, 0.1);
}

.pill .amt {
	font-size: 2rem;
	color: var(--lime);
}

.pill .lbl,
.astat .lbl,
.clabel,
.entry-meta {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.marquee-wrap {
	background: var(--lime);
	padding: 0.9rem 0;
	overflow: hidden;
	white-space: nowrap;
	transform: rotate(-1.5deg) scaleX(1.05);
	margin: 2rem 0;
}

.marquee-inner {
	display: inline-block;
	animation: marquee 22s linear infinite;
	font-family: 'Righteous', cursive;
	font-size: 1rem;
	letter-spacing: 0.05em;
	color: var(--navy);
	padding-left: 100%;
}

.dot {
	margin: 0 1.5rem;
	opacity: 0.4;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.about,
.contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
	padding: 7rem 6rem;
}

.services,
.hosting,
.content-page {
	padding: 7rem 6rem;
}

.services,
.contact {
	background: rgba(255, 255, 255, 0.015);
}

.stag {
	color: var(--lime);
	margin-bottom: 1rem;
}

.stag::before {
	content: '◆';
	font-size: 0.5rem;
}

.stitle {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	line-height: 1.05;
	margin: 0 0 1.2rem;
}

.acard {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	padding: 3rem;
}

.acard::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--violet), var(--pink), var(--lime));
}

.agrid,
.svcgrid,
.hstgrid,
.frow,
.post-list {
	display: grid;
	gap: 1.5rem;
}

.agrid,
.frow {
	grid-template-columns: 1fr 1fr;
}

.svcgrid,
.hstgrid {
	grid-template-columns: repeat(3, 1fr);
}

.svchdr,
.hsthdr {
	text-align: center;
	margin-bottom: 4rem;
}

.astat {
	text-align: center;
	padding: 1.5rem 1rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
}

.astat .num {
	font-size: 2.5rem;
	background: linear-gradient(135deg, var(--lime), #a8e040);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.avis {
	position: relative;
}

.sbadge {
	position: absolute;
	top: -1.5rem;
	right: -1.5rem;
	background: var(--pink);
	color: #fff;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: 'Righteous', cursive;
	font-size: 0.7rem;
	text-align: center;
	line-height: 1.3;
	animation: spinslow 15s linear infinite;
	box-shadow: 0 0 30px rgba(255, 61, 166, 0.4);
}

.sbadge span {
	font-size: 1.4rem;
	display: block;
}

@keyframes spinslow {
	to {
		transform: rotate(360deg);
	}
}

.svccard,
.hstcard,
.fcard,
.entry-card {
	border-radius: 20px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
}

.svccard,
.hstcard {
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	cursor: none;
}

.svccard:hover,
.hstcard:hover {
	transform: translateY(-8px);
}

.svccard:nth-child(1):hover {
	border-color: var(--violet);
	box-shadow: 0 20px 60px rgba(110, 47, 255, 0.2);
}

.svccard:nth-child(2):hover {
	border-color: var(--pink);
	box-shadow: 0 20px 60px rgba(255, 61, 166, 0.2);
}

.svccard:nth-child(3):hover {
	border-color: var(--lime);
	box-shadow: 0 20px 60px rgba(200, 241, 53, 0.15);
}

.svcem,
.hicon {
	font-size: 2.6rem;
	margin-bottom: 1.3rem;
	display: block;
	color: var(--lime);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.svcname {
	font-size: 1.5rem;
	margin-bottom: 0.8rem;
}

.svclist,
.hfeats,
form {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.svcitem,
.hfeats li {
	font-size: 0.85rem;
	color: rgba(250, 255, 240, 0.74);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.svcitem::before {
	content: '→';
	color: var(--lime);
	font-weight: 700;
}

.hfeats {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	text-align: left;
}

.hfeats li::before {
	content: '✓';
	color: var(--lime);
	font-weight: 700;
	flex-shrink: 0;
}

.glowc {
	position: absolute;
	bottom: -40px;
	right: -40px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	opacity: 0.1;
	transition: opacity 0.3s ease;
}

.svccard:hover .glowc {
	opacity: 0.25;
}

.svccard:nth-child(1) .glowc {
	background: var(--violet);
}

.svccard:nth-child(2) .glowc {
	background: var(--pink);
}

.svccard:nth-child(3) .glowc {
	background: var(--lime);
}

.hosting {
	text-align: center;
}

.hstgrid {
	max-width: 1000px;
	margin: 0 auto;
}

.hstcard.pop {
	border-color: var(--lime);
	background: var(--card-2);
	box-shadow: 0 0 60px rgba(200, 241, 53, 0.1);
	transform: scale(1.05);
}

.hstcard.pop:hover {
	transform: scale(1.05) translateY(-6px);
}

.hbadge {
	position: absolute;
	top: -1rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--lime);
	color: var(--navy);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.3rem 1rem;
	border-radius: 100px;
	white-space: nowrap;
}

.hname {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.hprice {
	font-size: 3.5rem;
	line-height: 1;
	color: var(--lime);
	margin-bottom: 0.3rem;
}

.hprice sup {
	font-size: 1.5rem;
	vertical-align: super;
}

.hprice sub,
.hperiod,
.hosting-note,
.fcopy,
.flinks a {
	font-size: 0.82rem;
	color: var(--muted);
}

.hosting-note {
	margin-top: 2rem;
}

.hbtn-out {
	border: 1px solid rgba(200, 241, 53, 0.3);
	color: var(--lime);
}

.hbtn-out:hover,
.hbtn-out:focus-visible {
	border-color: var(--lime);
	box-shadow: 0 0 20px rgba(200, 241, 53, 0.15);
}

.hbtn-fill {
	background: var(--lime);
	color: var(--navy);
}

.chips {
	flex-direction: column;
	gap: 1rem;
}

.chip {
	align-items: center;
	gap: 1rem;
	border-radius: 14px;
	padding: 1rem 1.5rem;
	transition: border-color 0.2s ease;
}

.chip:hover {
	border-color: var(--lime);
}

.cicon {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lime);
	min-width: 3rem;
}

.cval {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--white);
}

.fcard h3 {
	font-size: 1.8rem;
	margin: 0 0 2rem;
}

.fg {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(250, 255, 240, 0.4);
}

input,
select,
textarea {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--white);
	padding: 0.9rem 1.1rem;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.95rem;
	outline: none;
	border-radius: 10px;
	width: 100%;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	cursor: none;
	-webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
	color: rgba(250, 255, 240, 0.2);
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--lime);
	box-shadow: 0 0 0 3px rgba(200, 241, 53, 0.1);
}

select option {
	background: var(--navy);
}

textarea {
	resize: vertical;
	min-height: 110px;
}

.btn-sub {
	background: linear-gradient(135deg, var(--violet), var(--pink));
	color: #fff;
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
}

.notice {
	padding: 1rem 1.2rem;
	border-radius: 12px;
	margin: 0 0 1.5rem;
	font-weight: 500;
}

.notice-success {
	background: rgba(48, 154, 84, 0.18);
	border: 1px solid rgba(48, 154, 84, 0.4);
	color: #d8ffe6;
}

.notice-error {
	background: rgba(178, 58, 58, 0.18);
	border: 1px solid rgba(178, 58, 58, 0.4);
	color: #ffdada;
}

.content-shell {
	max-width: 1080px;
	margin: 0 auto;
}

.content-page {
	padding-top: 10rem;
	min-height: 60vh;
}

.post-list {
	grid-template-columns: 1fr;
	margin-top: 2rem;
}

.entry-card {
	margin-bottom: 1.5rem;
	border-radius: 24px;
}

.entry-title {
	margin: 0 0 0.75rem;
	font-size: 1.8rem;
	font-family: 'Righteous', cursive;
}

.entry-title a {
	text-decoration: none;
}

.entry-content > *:first-child,
.entry-summary > *:first-child {
	margin-top: 0;
}

.site-footer {
	background: #060810;
	padding: 3rem 6rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	border-top: 1px solid rgba(200, 241, 53, 0.08);
}

.flogo {
	font-size: 1.4rem;
}

.flinks {
	gap: 2rem;
	justify-content: center;
}

.flinks a {
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 500;
}

.flinks a:hover,
.flinks a:focus-visible {
	color: var(--lime);
}

.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.fade-up {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 900px) {
	body,
	.btn-lime,
	.btn-ghost,
	.hbtn,
	.btn-sub,
	.svccard,
	.hstcard,
	input,
	select,
	textarea {
		cursor: auto;
	}

	.cursor {
		display: none;
	}

	.site-navigation {
		padding: 1rem 1.5rem;
		flex-wrap: wrap;
		gap: 1rem;
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.menu-toggle[aria-expanded='true'] .menu-toggle__line:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle[aria-expanded='true'] .menu-toggle__line:nth-child(3) {
		transform: translateY(-6px) rotate(45deg);
	}

	.menu-toggle[aria-expanded='true'] .menu-toggle__line:nth-child(4) {
		transform: translateY(-10px) rotate(-45deg);
	}

	.site-navigation ul {
		display: none;
		flex-direction: column;
		width: 100%;
		padding: 1rem 0 0;
		gap: 0.75rem;
	}

	.site-navigation ul.is-open {
		display: flex;
	}

	body.menu-open {
		overflow: hidden;
	}

	.site-navigation ul li:last-child > a,
	.site-navigation .nav-cta {
		display: inline-flex;
		justify-content: center;
	}

	.hero,
	.content-page {
		padding: 7rem 1.5rem 4rem;
	}

	.about,
	.contact {
		grid-template-columns: 1fr;
		padding: 5rem 1.5rem;
		gap: 3rem;
	}

	.services,
	.hosting {
		padding: 5rem 1.5rem;
	}

	.svcgrid,
	.hstgrid,
	.agrid,
	.frow {
		grid-template-columns: 1fr;
	}

	.hstgrid {
		max-width: 420px;
	}

	.hstcard.pop,
	.hstcard.pop:hover {
		transform: none;
	}

	.site-footer {
		flex-direction: column;
		padding: 2rem 1.5rem;
		text-align: center;
	}
}
