/*
 * GT-SEO Cyberpunk Redesign
 * A futuristic, high-performance "Coming Soon" landing page.
 */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Outfit:wght@300;400;600&display=swap');

:root {
	--bg-color: #050505;
	--neon-cyan: #00f3ff;
	--neon-pink: #ff00ff;
	--neon-yellow: #f0ff00;
	--text-main: #e0e0e0;
	--glass-bg: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.1);
	--glow-shadow: 0 0 15px var(--neon-cyan);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* === Cyberpunk Enhancements === */

/* Glitch Effect for Countdown */
.glitch-flash {
	animation: glitch-anim 0.2s linear;
}

@keyframes glitch-anim {
	0% {
		transform: translate(0);
		text-shadow: -2px 0 var(--neon-pink), 2px 0 var(--neon-cyan);
	}

	25% {
		transform: translate(-2px, 2px);
	}

	50% {
		transform: translate(2px, -2px);
		opacity: 0.8;
	}

	75% {
		transform: translate(-1px, -1px);
	}

	100% {
		transform: translate(0);
		text-shadow: none;
	}
}

/* Typewriter under Logo */
.typewriter-container {
	font-family: 'Orbitron', sans-serif;
	font-size: 0.9rem;
	color: var(--neon-cyan);
	margin-top: 10px;
	letter-spacing: 2px;
	opacity: 0.8;
	height: 20px;
}

.typewriter-cursor {
	border-right: 2px solid var(--neon-cyan);
	animation: blink 0.7s infinite;
	margin-left: 2px;
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}

/* Scanning Line */
.scan-line {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(0, 243, 255, 0.1);
	box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
	z-index: 5;
	pointer-events: none;
	animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
	0% {
		top: -5%;
	}

	100% {
		top: 105%;
	}
}

/* Digital Rain Button Hover */
.notify-btn:hover::after {
	content: '01011001';
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.6rem;
	color: var(--neon-pink);
	animation: rainDrop 0.5s linear infinite;
	white-space: nowrap;
}

@keyframes rainDrop {
	0% {
		transform: translate(-50%, 0);
		opacity: 1;
	}

	100% {
		transform: translate(-50%, 30px);
		opacity: 0;
	}
}

body {
	background-color: var(--bg-color);
	color: var(--text-main);
	font-family: 'Outfit', sans-serif;
	overflow: hidden;
	height: 100vh;
	width: 100vw;
}

/* Background Canvas & Overlay */
.large-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: #000;
	/* Pure black to hide image boundaries */
}

#demo-canvas {
	opacity: 0.5;
	z-index: 2;
	/* Put neurons ON TOP of avatar */
	position: relative;
}

/* Hologram Avatar */
.hologram-container {
	position: absolute;
	bottom: -50px;
	/* Adjusted to hide cut bottom edge */
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 600px;
	/* Reduced size to keep head within view */
	height: auto;
	z-index: 1;
	/* Below canvas */
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	opacity: 0.85;
}

.hologram-avatar {
	width: 100%;
	height: auto;
	mix-blend-mode: screen;
	/* Smooth mask only at the bottom now that head has space */
	mask-image: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 1) 20%);
	-webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 1) 20%);
	animation: floatHologram 8s ease-in-out infinite;
	filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.3));
}

/* Subtle Flicker - Opacity only, no jittery movement */
.hologram-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(0deg,
			transparent,
			transparent 1px,
			rgba(0, 243, 255, 0.03) 2px,
			transparent 3px);
	z-index: 2;
	animation: scanLines 15s linear infinite;
	opacity: 0.5;
}

@keyframes scanLines {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 0 100%;
	}
}

.hologram-glow {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 150px;
	background: radial-gradient(ellipse at center, rgba(0, 243, 255, 0.2) 0%, transparent 70%);
	animation: pulseGlow 4s ease-in-out infinite;
	mix-blend-mode: screen;
}

@keyframes floatHologram {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-30px);
	}
}

@keyframes pulseHologram {

	0%,
	100% {
		opacity: 0.8;
	}

	50% {
		opacity: 1;
		filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.6));
	}
}

@keyframes pulseGlow {

	0%,
	100% {
		opacity: 0.3;
		transform: scale(1);
	}

	50% {
		opacity: 0.6;
		transform: scale(1.1);
	}
}

/* Main Content Wrapper */
.wrapper {
	position: relative;
	z-index: 10;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 20px;
}

/* Header & Logo */
#header {
	position: absolute;
	top: 40px;
	width: 100%;
}

.logo {
	font-family: 'Orbitron', sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 5px;
	text-decoration: none;
	background: linear-gradient(to right, var(--neon-cyan), var(--neon-pink));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
}

/* Countdown Section */
.countdown-container {
	margin-bottom: 50px;
}

.countdown.styled {
	display: flex;
	gap: 20px;
}

.countdown.styled div {
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	padding: 20px;
	width: 100px;
	/* Fixed width to prevent jumping */
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
	transition: transform 0.3s ease, border-color 0.3s ease;
	font-family: 'Orbitron', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	color: var(--neon-cyan);
	text-shadow: 0 0 10px var(--neon-cyan);
}

.countdown.styled div:hover {
	transform: translateY(-5px);
	border-color: var(--neon-cyan);
}

/* Removal of labels as requested */
.countdown.styled div span {
	display: none;
}

/* CTA Button */
.notify-btn {
	font-family: 'Orbitron', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	padding: 15px 40px;
	background: transparent;
	color: var(--neon-cyan);
	border: 2px solid var(--neon-cyan);
	border-radius: 4px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
	box-shadow: inset 0 0 10px rgba(0, 243, 255, 0.2), 0 0 10px rgba(0, 243, 255, 0.2);
}

.notify-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.4), transparent);
	transition: 0.5s;
}

.notify-btn:hover {
	background: var(--neon-cyan);
	color: #000;
	box-shadow: 0 0 30px var(--neon-cyan);
}

.notify-btn:hover::before {
	left: 100%;
}

/* Modal Styling */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(10px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: #0a0a0a;
	border: 1px solid var(--neon-cyan);
	padding: 40px;
	border-radius: 4px;
	max-width: 500px;
	width: 90%;
	position: relative;
	transform: scale(0.8);
	transition: all 0.4s ease;
	box-shadow: 0 0 50px rgba(0, 243, 255, 0.1);
}

.modal-overlay.active .modal-content {
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	color: var(--neon-cyan);
	font-size: 1.5rem;
	cursor: pointer;
}

.modal-content h3 {
	font-family: 'Orbitron', sans-serif;
	margin-bottom: 20px;
	color: var(--neon-cyan);
	text-align: center;
}

.modal-content p {
	margin-bottom: 25px;
	font-size: 0.9rem;
	opacity: 0.8;
	text-align: center;
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.modal-form input[type="email"],
.modal-form textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--glass-border);
	padding: 15px;
	color: #fff;
	border-radius: 4px;
	outline: none;
	font-family: 'Outfit', sans-serif;
	transition: all 0.3s ease;
}

.modal-form textarea {
	resize: none;
	border-bottom: 2px solid var(--glass-border);
}

.modal-form input:focus,
.modal-form textarea:focus {
	border-color: var(--neon-cyan);
	background: rgba(0, 243, 255, 0.05);
	box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.submit-btn {
	width: 100%;
	padding: 18px;
	background: var(--neon-cyan);
	border: none;
	color: #000;
	font-weight: 700;
	border-radius: 4px;
	cursor: pointer;
	font-family: 'Orbitron', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.submit-btn:hover {
	box-shadow: 0 0 25px var(--neon-cyan);
	transform: translateY(-2px);
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: left;
	margin-top: 5px;
}

.checkbox-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.8rem;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.checkbox-item:hover {
	opacity: 1;
}

.checkbox-item input {
	margin-top: 3px;
	cursor: pointer;
	accent-color: var(--neon-cyan);
}

/* Honeypot for bot protection */
.hp-field {
	display: none !important;
	visibility: hidden !important;
}

/* Social Icons Fixed */
#socialIcons {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 100;
}

#socialIcons ul {
	display: flex;
	gap: 20px;
	list-style: none;
}

#socialIcons a {
	color: var(--text-main);
	font-size: 1.2rem;
	transition: all 0.3s ease;
	opacity: 0.6;
}

#socialIcons a:hover {
	color: var(--neon-cyan);
	opacity: 1;
	transform: translateY(-3px);
	filter: drop-shadow(0 0 5px var(--neon-cyan));
}

/* Responsive */
@media (max-width: 768px) {
	.countdown.styled {
		gap: 10px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.countdown.styled div {
		min-width: 70px;
		height: 70px;
		padding: 10px;
		font-size: 1.8rem;
	}

	.logo {
		font-size: 1.5rem;
	}

	.typewriter-container {
		font-size: 0.7rem;
	}

	.modal-form {
		flex-direction: column;
	}

	.submit-btn {
		padding: 15px;
		font-size: 0.9rem;
	}

	.hologram-container {
		max-width: 400px;
		opacity: 0.5;
	}

	#socialIcons {
		right: 20px;
		bottom: 20px;
	}
}

@media (max-height: 600px) {
	.hologram-container {
		display: none;
		/* Hide avatar on very short screens to save space */
	}
}