/* TRAKITO Landing Page Custom Styles */
.TRAKITO-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
	padding: 0 1rem;
}
.TRAKITO-logo {
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #fff;
	text-shadow: 0 4px 24px #0f2027cc;
	margin-bottom: 1rem;
}
.TRAKITO-sub {
	color: #b2e0ff;
	font-size: 1.25rem;
	margin-bottom: 2rem;
}
.counter {
	display: flex;
	gap: 2rem;
	justify-content: center;
	margin: 2rem 0;
}
.counter-block {
	background: rgba(255,255,255,0.10);
	border-radius: 1rem;
	padding: 1.5rem 2rem;
	box-shadow: 0 2px 16px #0002;
	text-align: center;
	min-width: 90px;
	transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}
.counter-block span {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
}
.counter-block label {
	color: #b2e0ff;
	font-size: 1rem;
	margin-top: 0.5rem;
	letter-spacing: 0.05em;
}
.counter-block:hover {
	transform: scale(1.08) rotate(-2deg);
	box-shadow: 0 8px 32px #00bfff44;
}
.coming-soon {
	color: #fff;
	font-size: 1.5rem;
	margin-top: 2rem;
	letter-spacing: 0.05em;
	text-shadow: 0 2px 8px #0f2027cc;
}
.powered {
	color: #b2e0ff;
	font-size: 1rem;
	margin-top: 3rem;
	text-align: center;
	opacity: 0.7;
}
.gps-svg {
	width: 120px;
	height: 120px;
	margin-bottom: 2rem;
	animation: floatGPS 3s ease-in-out infinite;
	filter: drop-shadow(0 8px 32px #00bfff44);
}
@keyframes floatGPS {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-18px) scale(1.04); }
}
.gps-antenna {
	stroke: #00bfff;
	stroke-width: 2;
	stroke-dasharray: 12 8;
	animation: antennaPulse 2s linear infinite;
}
@keyframes antennaPulse {
	0% { stroke-dashoffset: 0; opacity: 1; }
	50% { stroke-dashoffset: 10; opacity: 0.6; }
	100% { stroke-dashoffset: 0; opacity: 1; }
}
@media (max-width: 600px) {
	.TRAKITO-logo { font-size: 2rem; }
	.counter { gap: 0.5rem; }
	.counter-block { padding: 1rem 0.5rem; min-width: 60px; }
	.counter-block span { font-size: 1.3rem; }
	.gps-svg { width: 70px; height: 70px; }
}
