:root {
	--font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Lato', Arial, sans-serif;
	--bg-main: #000000;
	--surface: rgba(255, 255, 255, 0.03);
	--surface-strong: rgba(17, 24, 39, 0.65);
	--surface-border: rgba(204, 204, 204, 0.12);
	--surface-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	--text-primary: #f8fafc;
	--text-secondary: #e5e7eb;
	--text-muted: #94a3b8;
	--heading-color: #e5e7eb;
	--heading-shadow: 0 0 20px rgba(102, 255, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.8);
	--accent: #66ff00;
	--accent-strong: #a6ff6a;
	--divider-edge: rgba(204, 204, 204, 0.2);
	--divider-center: rgba(102, 255, 0, 0.35);
	--header-bg: rgba(17, 24, 39, 0.5);
	--header-border: rgba(75, 85, 99, 0.5);
	--menu-bg: rgba(17, 24, 39, 0.85);
	--footer-bg: rgba(17, 24, 39, 0.4);
	--footer-border: rgba(204, 204, 204, 0.15);
	--nav-link-color: #cbd5e1;
	--nav-link-hover: #f8fafc;
	--btn-primary-bg: linear-gradient(135deg, rgba(204, 204, 204, 0.15) 0%, rgba(102, 255, 0, 0.1) 100%);
	--btn-primary-hover: linear-gradient(135deg, rgba(204, 204, 204, 0.25) 0%, rgba(102, 255, 0, 0.2) 100%);
	--btn-primary-text: #ffffff;
	--btn-secondary-bg: rgba(255, 255, 255, 0.05);
	--btn-secondary-hover: rgba(204, 204, 204, 0.15);
	--btn-secondary-text: #cccccc;
	--input-bg: rgba(0, 0, 0, 0.2);
	--input-border: rgba(255, 255, 255, 0.2);
	--input-focus: rgba(102, 255, 0, 0.3);
	--input-ring: rgba(204, 204, 204, 0.1);
}

.theme-light {
	--bg-main: #e7eaef;
	--surface: rgba(234, 238, 244, 0.78);
	--surface-strong: rgba(223, 228, 236, 0.92);
	--surface-border: rgba(15, 23, 42, 0.12);
	--surface-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
	--text-primary: #0f172a;
	--text-secondary: #111827;
	--text-muted: #475569;
	--heading-color: #0f172a;
	--heading-shadow: 0 8px 28px rgba(34, 143, 59, 0.24);
	--accent: #2e9f4a;
	--accent-strong: #55c46b;
	--divider-edge: rgba(100, 116, 139, 0.38);
	--divider-center: rgba(46, 159, 74, 0.45);
	--header-bg: rgba(17, 24, 39, 0.55);
	--header-border: rgba(75, 85, 99, 0.55);
	--menu-bg: rgba(17, 24, 39, 0.9);
	--footer-bg: rgba(17, 24, 39, 0.5);
	--footer-border: rgba(204, 204, 204, 0.18);
	--nav-link-color: #e2e8f0;
	--nav-link-hover: #ffffff;
	--btn-primary-bg: linear-gradient(135deg, rgba(46, 159, 74, 0.12) 0%, rgba(85, 196, 107, 0.12) 100%);
	--btn-primary-hover: linear-gradient(135deg, rgba(46, 159, 74, 0.24) 0%, rgba(85, 196, 107, 0.22) 100%);
	--btn-primary-text: #0f172a;
	--btn-secondary-bg: rgba(15, 23, 42, 0.06);
	--btn-secondary-hover: rgba(46, 159, 74, 0.12);
	--btn-secondary-text: #0f172a;
	--input-bg: rgba(236, 240, 244, 0.95);
	--input-border: rgba(100, 116, 139, 0.65);
	--input-focus: rgba(46, 159, 74, 0.55);
	--input-ring: rgba(46, 159, 74, 0.24);
}

html {
	scroll-behavior: smooth;
	background: var(--bg-main);
}

body {
	font-family: var(--font-body);
	background-color: var(--bg-main);
	color: var(--text-primary);
	overflow-x: hidden;
	transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

a {
	color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
	font-family: 'Bebas Neue', 'Russo One', 'Impact', sans-serif;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--heading-color);
	text-shadow: var(--heading-shadow);
}

.section-padding {
	padding: 4rem 1rem;
}

@media (min-width: 768px) {
	.section-padding {
		padding: 6rem 2rem;
	}
}

.section-divider {
	height: 2px;
	background: linear-gradient(90deg,
		transparent 0%,
		var(--divider-edge) 20%,
		var(--divider-center) 50%,
		var(--divider-edge) 80%,
		transparent 100%);
	margin: 3rem auto;
	max-width: 80%;
	opacity: 0.75;
	transition: opacity 0.3s ease;
}

.nav-link {
	font-family: var(--font-body);
	font-weight: 600;
	position: relative;
	transition: color 0.3s;
	color: var(--nav-link-color);
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(90deg, var(--nav-link-color) 0%, rgba(102, 255, 0, 0.5) 100%);
	transition: width 0.3s;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
	color: var(--nav-link-hover);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
	width: 100%;
}

.mobile-nav-link {
	font-family: var(--font-body);
	color: var(--nav-link-color);
	transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
	color: var(--nav-link-hover);
	background-color: rgba(102, 255, 0, 0.08);
}

.site-header {
	background: var(--header-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--header-border);
	transition: background-color 0.35s ease, border-color 0.35s ease;
}

.mobile-menu-panel {
	background: var(--menu-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid var(--header-border);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.theme-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.85rem;
	border-radius: 9999px;
	border: 1px solid var(--surface-border);
	background: var(--surface);
	color: var(--text-primary);
	box-shadow: var(--surface-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
	transform: translateY(-1px);
	border-color: var(--accent);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(102, 255, 0, 0.08);
}

.theme-toggle:active {
	transform: translateY(0);
}

.theme-toggle .icon-sun {
	display: none;
}

.theme-light .theme-toggle .icon-sun {
	display: inline;
}

.theme-light .theme-toggle .icon-moon {
	display: none;
}

.glass-window {
	background: var(--surface);
	border-radius: 16px;
	box-shadow: var(--surface-shadow);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--surface-border);
}

.glass-footer {
	background: var(--footer-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid var(--footer-border);
	box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
	position: relative;
}

.glass-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(204, 204, 204, 0.3) 50%,
		transparent 100%);
}

.btn-primary,
.btn-secondary {
	font-family: var(--font-body);
	font-weight: 700;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.btn-primary {
	background: var(--btn-primary-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--btn-primary-text);
	border: 1px solid var(--surface-border);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
	            inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
	background: var(--btn-primary-hover);
	border-color: var(--accent);
	box-shadow: 0 6px 20px rgba(102, 255, 0, 0.15),
	            inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: scale(1.04);
}

.btn-secondary {
	background: var(--btn-secondary-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--btn-secondary-text);
	border: 1px solid var(--surface-border);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
	            inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
	background: var(--btn-secondary-hover);
	border-color: var(--accent);
	color: var(--text-primary);
	box-shadow: 0 6px 20px rgba(204, 204, 204, 0.1),
	            inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: scale(1.03);
}

.pricing-card {
	transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 25px -5px rgba(204, 204, 204, 0.2), 0 10px 10px -5px rgba(102, 255, 0, 0.1);
}

input[type="text"],
input[type="email"],
textarea {
	background-color: var(--input-bg) !important;
	border-color: var(--input-border) !important;
	color: var(--text-primary) !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	--tw-ring-color: var(--input-ring) !important;
	--tw-ring-shadow: 0 0 0 var(--input-ring) !important;
	border-color: var(--input-focus) !important;
	box-shadow: 0 0 0 3px var(--input-ring) !important;
}

body .text-gray-200 {
	color: var(--text-secondary) !important;
}

body .text-gray-300 {
	color: var(--text-secondary) !important;
}

body .text-gray-400 {
	color: var(--text-muted) !important;
}

body .text-gray-500 {
	color: var(--text-muted) !important;
}

body .text-white {
	color: var(--text-primary) !important;
}

body .hover\:text-white:hover {
	color: var(--text-primary) !important;
}

.glass-footer .text-white,
.glass-footer .text-gray-400,
.glass-footer .text-gray-500 {
	color: #e5e7eb !important;
}

.site-header .text-gray-200,
.site-header .text-gray-300,
.site-header .text-white {
	color: #e5e7eb !important;
}
