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

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

:root {
	--bg-primary: #050814;
	--bg-secondary: #0a1128;
	--bg-card: #0f1a3a;

	--accent: #2563eb;
	--accent-bright: #3b82f6;
	--accent-glow: #60a5fa;

	--text-primary: #f1f5f9;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;

	--border: rgba(96, 165, 250, 0.15);

	--gradient-1: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
	--gradient-2: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);

	--shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
	--ease: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	cursor: none;
}

@media (max-width: 1024px) {
	body { cursor: auto; }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }


.cursor,
.cursor-follower {
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	border-radius: 50%;
	transition: transform 0.15s var(--ease);
}

.cursor {
	width: 8px;
	height: 8px;
	background: var(--accent-bright);
	transform: translate(-50%, -50%);
	mix-blend-mode: difference;
}

.cursor-follower {
	width: 32px;
	height: 32px;
	border: 2px solid var(--accent-bright);
	transform: translate(-50%, -50%);
	transition: transform 0.4s var(--ease), width 0.3s ease, height 0.3s ease;
}

.cursor-follower.expand {
	width: 60px;
	height: 60px;
	background: rgba(59, 130, 246, 0.1);
}

@media (max-width: 1024px) {
	.cursor, .cursor-follower { display: none; }
}


.bg-grid {
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(rgba(96, 165, 250, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(96, 165, 250, 0.04) 1px, transparent 1px);
	background-size: 50px 50px;
	z-index: -2;
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-gradient {
	position: fixed;
	inset: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.15), transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.1), transparent 40%);
	z-index: -1;
	animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.6; }
}


.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	background: rgba(5, 8, 20, 0.6);
	border-bottom: 1px solid var(--border);
	transition: all 0.4s var(--ease);
}

.navbar.scrolled {
	padding: 1rem 5%;
	background: rgba(5, 8, 20, 0.9);
}

.nav-logo {
	font-family: 'Syne', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: 1px;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.logo-bracket {
	color: var(--accent-bright);
	-webkit-text-fill-color: var(--accent-bright);
	font-family: 'JetBrains Mono', monospace;
	font-weight: 400;
}

.nav-links {
	display: flex;
	gap: 2.5rem;
}

.nav-link {
	position: relative;
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--text-secondary);
	transition: color 0.3s ease;
	letter-spacing: 0.5px;
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-1);
	transition: width 0.4s var(--ease);
}

.nav-link:hover,
.nav-link.active {
	color: var(--text-primary);
}

.nav-link:hover::before,
.nav-link.active::before {
	width: 100%;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.menu-toggle span {
	width: 28px;
	height: 2px;
	background: var(--text-primary);
	transition: all 0.3s var(--ease);
}

.menu-toggle.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
	.menu-toggle { display: flex; }
	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		background: rgba(5, 8, 20, 0.98);
		-webkit-backdrop-filter: blur(20px);
		backdrop-filter: blur(20px);
		transition: right 0.5s var(--ease);
	}
	.nav-links.active { right: 0; }
	.nav-link { font-size: 1.4rem; }
}


.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 5% 4rem;
	position: relative;
	overflow: hidden;
}

.hero-content {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-greeting {
	font-family: 'JetBrains Mono', monospace;
	color: var(--accent-bright);
	font-size: 1rem;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.hero-name {
	font-family: 'Syne', sans-serif;
	font-size: clamp(3rem, 9vw, 7rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -2px;
	margin-bottom: 1.5rem;
}

.name-line {
	display: block;
	overflow: hidden;
}

.name-line.accent {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

.hero-role {
	font-family: 'JetBrains Mono', monospace;
	font-size: clamp(1rem, 2vw, 1.4rem);
	color: var(--text-secondary);
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 2rem;
}

.role-tag { color: var(--accent-bright); }

.cursor-blink {
	color: var(--accent-bright);
	animation: blink 1s infinite;
}

@keyframes blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

.hero-desc {
	font-size: 1.05rem;
	color: var(--text-secondary);
	max-width: 540px;
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: none;
	transition: all 0.4s var(--ease);
	position: relative;
	overflow: hidden;
	letter-spacing: 0.5px;
	border: none;
}

.btn-primary {
	background: var(--gradient-1);
	color: white;
	box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

.btn-primary svg {
	transition: transform 0.3s ease;
}

.btn-primary:hover svg {
	transform: translateX(5px);
}

.btn-outline {
	background: transparent;
	color: var(--text-primary);
	border: 2px solid var(--border);
}

.btn-outline:hover {
	border-color: var(--accent-bright);
	background: rgba(59, 130, 246, 0.08);
	transform: translateY(-3px);
}

.hero-socials {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	transition: all 0.4s var(--ease);
	background: rgba(15, 26, 58, 0.4);
}

.social-link:hover {
	color: var(--accent-bright);
	border-color: var(--accent-bright);
	transform: translateY(-4px) rotate(-5deg);
	box-shadow: var(--shadow-glow);
}


.hero-visual {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.5;
	animation: orbFloat 8s ease-in-out infinite;
}

.orb-main {
	width: 350px;
	height: 350px;
	background: var(--gradient-1);
}

.orb-secondary {
	width: 200px;
	height: 200px;
	background: var(--accent-glow);
	top: 20%;
	right: 10%;
	animation-delay: -4s;
}

@keyframes orbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(20px, -30px) scale(1.1); }
}

.floating-card {
	position: absolute;
	background: rgba(15, 26, 58, 0.7);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.95rem;
	color: var(--text-primary);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	animation: floatCard 6s ease-in-out infinite;
	z-index: 2;
}

.card-tag {
	color: var(--accent-bright);
	font-weight: 700;
}

.card-1 { top: 10%; left: 5%; animation-delay: 0s; }
.card-2 { top: 25%; right: 0; animation-delay: -1.5s; }
.card-3 { bottom: 30%; left: 10%; animation-delay: -3s; }
.card-4 { bottom: 10%; right: 15%; animation-delay: -4.5s; }

@keyframes floatCard {
	0%, 100% { transform: translateY(0) rotate(-2deg); }
	50% { transform: translateY(-20px) rotate(2deg); }
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8rem;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.75rem;
	letter-spacing: 3px;
	color: var(--text-muted);
}

.scroll-line {
	width: 2px;
	height: 50px;
	background: linear-gradient(to bottom, var(--accent-bright), transparent);
	position: relative;
	overflow: hidden;
}

.scroll-line::before {
	content: '';
	position: absolute;
	top: -50%;
	left: 0;
	width: 100%;
	height: 50%;
	background: var(--accent-bright);
	animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
	0% { top: -50%; }
	100% { top: 100%; }
}

@media (max-width: 968px) {
	.hero-content { grid-template-columns: 1fr; gap: 2rem; }
	.hero-visual { height: 350px; order: -1; }
	.floating-card { font-size: 0.8rem; padding: 0.7rem 1rem; }
}


.section {
	padding: 7rem 5%;
	position: relative;
}

.container {
	max-width: 1300px;
	margin: 0 auto;
}

.section-header {
	margin-bottom: 4rem;
	position: relative;
}

.section-number {
	font-family: 'JetBrains Mono', monospace;
	color: var(--accent-bright);
	font-size: 0.9rem;
	letter-spacing: 3px;
	margin-bottom: 0.5rem;
	display: block;
}

.section-title {
	font-family: 'Syne', sans-serif;
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 800;
	letter-spacing: -1.5px;
	line-height: 1.1;
}

.accent-text {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-line {
	margin-top: 1.5rem;
	width: 80px;
	height: 4px;
	background: var(--gradient-1);
	border-radius: 4px;
}


.about-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 4rem;
	align-items: start;
}

.about-text p {
	color: var(--text-secondary);
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.about-subtitle {
	font-family: 'Syne', sans-serif;
	font-size: 1.4rem;
	color: var(--accent-bright);
	margin: 2rem 0 1rem;
	font-weight: 700;
}

.about-subtitle:first-child { margin-top: 0; }

.about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.stat-card {
	background: rgba(15, 26, 58, 0.4);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all 0.4s var(--ease);
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
	transition: left 0.6s var(--ease);
}

.stat-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-bright);
	box-shadow: var(--shadow-glow);
}

.stat-card:hover::before { left: 100%; }

.stat-number {
	font-family: 'Syne', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.3rem;
}

.stat-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.8rem;
	color: var(--text-secondary);
	letter-spacing: 1px;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.about-grid { grid-template-columns: 1fr; }
}


.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}

.skill-card {
	background: rgba(15, 26, 58, 0.4);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.4s var(--ease);
	position: relative;
	overflow: hidden;
}

.skill-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gradient-1);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.skill-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent-bright);
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

.skill-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--gradient-1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	margin-bottom: 1.2rem;
	transition: transform 0.4s var(--ease);
}

.skill-icon svg {
	width: 28px;
	height: 28px;
}

.skill-card:hover .skill-icon {
	transform: rotate(-8deg) scale(1.1);
}

.skill-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.skill-bar {
	height: 6px;
	background: rgba(96, 165, 250, 0.1);
	border-radius: 6px;
	overflow: hidden;
}

.skill-progress {
	height: 100%;
	background: var(--gradient-1);
	border-radius: 6px;
	width: 0;
	transition: width 1.5s var(--ease);
}


.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.project-card {
	background: rgba(15, 26, 58, 0.5);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	transition: all 0.5s var(--ease);
	cursor: none;
}

.project-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent-bright);
}

.project-glow {
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.project-card:hover .project-glow { opacity: 1; }

.project-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.project-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--gradient-1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: transform 0.4s var(--ease);
}

.project-card:hover .project-icon { transform: rotate(8deg); }

.project-num {
	font-family: 'JetBrains Mono', monospace;
	font-size: 1.2rem;
	color: var(--accent-bright);
	font-weight: 700;
	opacity: 0.6;
}

.project-title {
	font-family: 'Syne', sans-serif;
	font-size: 1.6rem;
	margin-bottom: 1rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.project-card:hover .project-title { color: var(--accent-bright); }

.project-desc {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.project-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.tag {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.75rem;
	padding: 0.4rem 0.8rem;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 20px;
	color: var(--accent-bright);
}


.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding-left: 2rem;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background: linear-gradient(to bottom, var(--accent-bright), rgba(96, 165, 250, 0.1));
}

.timeline-item {
	position: relative;
	padding-bottom: 3rem;
	padding-left: 2rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
	position: absolute;
	left: -2.4rem;
	top: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--bg-primary);
	border: 3px solid var(--accent-bright);
	transition: all 0.3s ease;
}

.timeline-dot.accent {
	background: var(--accent-bright);
	box-shadow: 0 0 20px var(--accent-glow);
}

.timeline-item:hover .timeline-dot {
	transform: scale(1.3);
	box-shadow: 0 0 25px var(--accent-glow);
}

.timeline-content {
	background: rgba(15, 26, 58, 0.4);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 1.5rem 2rem;
	transition: all 0.4s var(--ease);
}

.timeline-item:hover .timeline-content {
	border-color: var(--accent-bright);
	transform: translateX(8px);
}

.timeline-date {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.8rem;
	color: var(--accent-bright);
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
	display: block;
	text-transform: uppercase;
}

.timeline-content h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.timeline-place {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.timeline-list {
	margin-top: 0.8rem;
}

.timeline-list li {
	color: var(--text-secondary);
	font-size: 0.95rem;
	padding: 0.4rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.timeline-list li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--accent-bright);
}


.contact-content {
	text-align: center;
}

.contact-headline {
	font-family: 'Syne', sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.contact-sub {
	color: var(--text-secondary);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 3rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	text-align: left;
}

.contact-card {
	background: rgba(15, 26, 58, 0.4);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 1.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	transition: all 0.4s var(--ease);
	cursor: none;
	position: relative;
	overflow: hidden;
}

.contact-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--gradient-1);
	transition: width 0.4s var(--ease);
}

.contact-card:hover {
	transform: translateY(-6px);
	border-color: var(--accent-bright);
	background: rgba(15, 26, 58, 0.7);
}

.contact-card:hover::after { width: 100%; }

.contact-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(59, 130, 246, 0.15);
	color: var(--accent-bright);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.8rem;
	transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
	background: var(--gradient-1);
	color: white;
	transform: scale(1.1) rotate(-5deg);
}

.contact-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.75rem;
	color: var(--text-muted);
	letter-spacing: 2px;
	text-transform: uppercase;
}

.contact-value {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-primary);
}


.footer {
	padding: 2.5rem 5%;
	border-top: 1px solid var(--border);
	background: rgba(5, 8, 20, 0.6);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-logo {
	font-family: 'Syne', sans-serif;
	font-size: 1.3rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-text {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-family: 'JetBrains Mono', monospace;
}

.back-top {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-bright);
	transition: all 0.3s var(--ease);
}

.back-top:hover {
	background: var(--gradient-1);
	color: white;
	transform: translateY(-4px);
	box-shadow: var(--shadow-glow);
}


.reveal {
	opacity: 0;
	transform: translateY(30px);
	animation: revealUp 1s var(--ease) forwards;
}

.reveal:nth-child(1) { animation-delay: 0.2s; }
.reveal:nth-child(2) { animation-delay: 0.4s; }
.reveal:nth-child(3) { animation-delay: 0.6s; }
.reveal:nth-child(4) { animation-delay: 0.8s; }
.reveal:nth-child(5) { animation-delay: 1.0s; }
.reveal:nth-child(6) { animation-delay: 1.2s; }

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

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}


::selection {
	background: var(--accent-bright);
	color: white;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
	background: var(--gradient-1);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--accent-bright);
}
