:root {
  --accent: #6366f1;
}

html,
body {
	height: 100%
}
body {
	font-family: Inter, ui-sans-serif, system-ui;
	background: #0b1220;
	color: #e6eef8;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth
}
main {
	scroll-snap-type: y mandatory;
	height: 100vh;
	overflow-y: auto;
	overflow-x: hidden
}
section {
	scroll-snap-align: start;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 1.90rem
}
nav.side {
	position: fixed;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 60;
	display: flex;
	flex-direction: column;
	gap: 0.75rem
}
.menu-dot {
	width: 12px;
	height: 12px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 4px 12px rgba(2, 6, 23, 0.6);
	transition: transform 0.28s ease, background 0.28s ease
}
.menu-dot.active {
	background: var(--accent);
	transform: scale(1.4)
}
.hero {
	background: linear-gradient(180deg,#071023 0%, #081426 60%)
}
.panel {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto
}
.project-card {
	background: linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 14px;
	backdrop-filter:blur(6px)
}
[data-parallax] {
	will-change: transform
}
.cursor-blink {
	animation: blink 1s steps(2, start) infinite
}
@keyframes blink {
	to {
		visibility: hidden
	}
}
.lang-toggle {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 70;
}
.lang-btn {
	background: var(--accent);
	color: #000;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(2, 6, 23, 0.6)
}
@media(max-width:640px) {
	nav.side {
		left: 0.5rem
	}
}