*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--accent: #00f5a0;
	--accent-rgb: 0, 245, 160;
	--accent-dim: rgba(var(--accent-rgb), 0.15);
	--accent-glow: rgba(var(--accent-rgb), 0.4);
	--bg: #0a0a0f;
	--bg-card: #111118;
	--bg-card-hover: #16161f;
	--bg-elevated: #1a1a25;
	--text: #e8e8ed;
	--text-dim: #8888a0;
	--text-muted: #555568;
	--border: #222233;
	--border-hover: #333348;
	--nav-bg: rgba(10, 10, 15, 0.85);
	--mobile-bg: rgba(10, 10, 15, 0.97);
	--grid-color: rgba(34, 34, 51, 0.4);
	--shadow-dark: rgba(0, 0, 0, 0.4);
	--font-heading: 'Space Grotesk', sans-serif;
	--font-body: 'Inter', sans-serif;
	--font-mono: 'JetBrains Mono', monospace;
	--nav-height: 72px;
	--section-pad: 120px 0;
}
body.light-theme {
	--accent: #00b377;
	--accent-rgb: 0, 179, 119;
	--accent-dim: rgba(var(--accent-rgb), 0.15);
	--accent-glow: rgba(var(--accent-rgb), 0.2);
	--bg: #fafafc;
	--bg-card: #ffffff;
	--bg-card-hover: #f0f0f4;
	--bg-elevated: #f4f4f8;
	--text: #1a1a24;
	--text-dim: #555568;
	--text-muted: #8888a0;
	--border: #e0e0e8;
	--border-hover: #c8c8d4;
	--nav-bg: rgba(250, 250, 252, 0.85);
	--mobile-bg: rgba(250, 250, 252, 0.97);
	--grid-color: rgba(0, 0, 0, 0.05);
	--shadow-dark: rgba(0, 0, 0, 0.1);
}
html {
	scroll-behavior: smooth;
	font-size: 16px;
}
body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	overflow-x: hidden;
	cursor: none;
}
::selection {
	background: var(--accent);
	color: var(--bg);
}
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: var(--bg);
}
::-webkit-scrollbar-thumb {
	background: var(--accent-dim);
	border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--accent);
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
section {
	padding: var(--section-pad);
	position: relative;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 600;
}

/* Custom Cursor */
.cursor {
	width: 20px;
	height: 20px;
	border: 2px solid var(--accent);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 99999;
	transition:
		transform 0.15s ease,
		opacity 0.15s ease;
	mix-blend-mode: difference;
}
.cursor-dot {
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 99999;
	transition: transform 0.1s ease;
}
.cursor.active {
	transform: scale(2.5);
	opacity: 0.5;
}

/* Grain Overlay */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9998;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
	opacity: 0.6;
}

/* Scanline */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9997;
	pointer-events: none;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(0, 0, 0, 0.03) 2px,
		rgba(0, 0, 0, 0.03) 4px
	);
}

/* ===== NAVBAR ===== */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	padding: 0 48px;
	height: var(--nav-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.4s ease;
	background: transparent;
}
nav.scrolled {
	background: var(--nav-bg);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--border);
}
.nav-logo {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	display: flex;
	align-items: center;
	gap: 12px;
}
.nav-logo .monogram {
	width: 36px;
	height: 36px;
	border: 2px solid var(--accent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--accent);
	font-family: var(--font-mono);
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}
.nav-links a {
	font-size: 0.875rem;
	color: var(--text-dim);
	transition: color 0.3s ease;
	position: relative;
	font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active {
	color: var(--accent);
}
.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}
.nav-links a:hover::after {
	width: 100%;
}
.nav-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 100px;
	border: 1px solid rgba(var(--accent-rgb), 0.3);
	background: rgba(var(--accent-rgb), 0.08);
	font-size: 0.75rem;
	color: var(--accent);
	font-weight: 500;
	font-family: var(--font-mono);
}
.nav-badge .pulse {
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.5);
	}
}
.nav-cta {
	padding: 10px 24px;
	background: var(--accent);
	color: var(--bg);
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-heading);
}
.nav-cta:hover {
	box-shadow: 0 0 30px var(--accent-glow);
	transform: translateY(-1px);
}
.nav-right {
	display: flex;
	align-items: center;
	gap: 20px;
}
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 1001;
}
.hamburger span {
	width: 24px;
	height: 2px;
	background: var(--text);
	transition: all 0.3s ease;
}
.mobile-menu {
	display: none;
}

.theme-toggle {
	background: none;
	border: none;
	color: var(--text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 1001;
}
.theme-toggle:hover {
	background: var(--bg-card);
	color: var(--accent);
}
.theme-toggle svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}
.theme-toggle:hover svg {
	transform: rotate(15deg);
}

/* ===== HERO ===== */
#hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: var(--nav-height);
}
.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--grid-color) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
	background-size: 60px 60px;
	animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(60px, 60px);
	}
}
.hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: blur(100px);
	opacity: 0.3;
	animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
	0%,
	100% {
		opacity: 0.2;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.4;
		transform: translate(-50%, -50%) scale(1.1);
	}
}
.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 60px;
}
.hero-left {
	max-width: 700px;
}
.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid var(--border);
	border-radius: 100px;
	font-size: 0.8rem;
	color: var(--text-dim);
	margin-bottom: 32px;
	font-family: var(--font-mono);
	background: var(--bg-card);
}
.hero-tag .dot {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
	animation: pulse 2s infinite;
}
.mobile-text {
	display: none;
}
.hero-name {
	font-size: clamp(3rem, 8vw, 6.5rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.04em;
	margin-bottom: 24px;
	font-style: italic;
}
.hero-name .accent {
	color: var(--accent);
	font-style: normal;
}
.hero-name .outline {
	-webkit-text-stroke: 2px var(--text);
	color: transparent;
}
.hero-role {
	font-size: clamp(1rem, 2vw, 1.35rem);
	color: var(--text-dim);
	margin-bottom: 40px;
	line-height: 1.6;
	max-width: 560px;
	font-weight: 300;
}
.hero-role strong {
	color: var(--text);
	font-weight: 500;
}
.hero-stats {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}
.stat-chip {
	padding: 14px 24px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
	min-width: 130px;
}
.stat-chip:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.1);
}
.stat-chip .number {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--accent);
	font-family: var(--font-heading);
	display: block;
}
.stat-chip .label {
	font-size: 0.75rem;
	color: var(--text-dim);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 4px;
	display: block;
}
.hero-right {
	position: relative;
}
.hero-avatar {
	width: 320px;
	height: 380px;
	border-radius: 20px;
	overflow: hidden;
	border: 2px solid var(--border);
	position: relative;
	z-index: 2;
}
.hero-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-avatar::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}
.avatar-decoration {
	position: absolute;
	width: 340px;
	height: 400px;
	border: 2px solid var(--accent-dim);
	border-radius: 20px;
	top: -10px;
	left: 10px;
	z-index: 1;
}
.hero-scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--text-muted);
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-family: var(--font-mono);
	animation: bounce 2s infinite;
}
@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(8px);
	}
}
.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ===== MARQUEE ===== */
.marquee-section {
	padding: 40px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	overflow: hidden;
	position: relative;
}
.marquee-track {
	display: flex;
	animation: marquee 30s linear infinite;
	width: max-content;
}
.marquee-track:hover {
	animation-play-state: paused;
}
.marquee-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 40px;
	font-size: 1rem;
	color: var(--text-dim);
	font-family: var(--font-mono);
	white-space: nowrap;
	font-weight: 500;
	transition: color 0.3s;
}
.marquee-item:hover {
	color: var(--accent);
}
.marquee-item .sep {
	color: var(--accent);
	font-size: 0.6rem;
}
@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ===== SECTION HEADERS ===== */
.section-header {
	margin-bottom: 64px;
}
.section-label {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.section-label::before {
	content: '';
	width: 30px;
	height: 1px;
	background: var(--accent);
}
.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.03em;
}
.section-subtitle {
	color: var(--text-dim);
	margin-top: 12px;
	font-size: 1.05rem;
	max-width: 560px;
	line-height: 1.6;
}

/* ===== ABOUT ===== */
#about {
	position: relative;
}
#about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(
		to bottom right,
		var(--bg) 49%,
		transparent 51%
	);
	z-index: 1;
}
#about .container {
	position: relative;
	z-index: 2;
}
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.about-text {
	font-size: 1.05rem;
	color: var(--text-dim);
	line-height: 1.8;
	margin-bottom: 32px;
}
.about-text strong {
	color: var(--text);
}
.about-cards {
	display: grid;
	gap: 20px;
}
.about-card {
	padding: 28px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}
.about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: var(--accent);
	transform: scaleY(0);
	transition: transform 0.4s ease;
	transform-origin: top;
}
.about-card:hover {
	border-color: var(--accent-dim);
	transform: translateX(8px);
}
.about-card:hover::before {
	transform: scaleY(1);
}
.about-card-icon {
	font-size: 1.5rem;
	margin-bottom: 12px;
}
.about-card h4 {
	font-size: 1.1rem;
	margin-bottom: 8px;
	font-weight: 600;
}
.about-card p {
	font-size: 0.875rem;
	color: var(--text-dim);
	line-height: 1.6;
}
.about-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 24px;
}
.info-item {
	font-size: 0.875rem;
	color: var(--text-dim);
}
.info-item span {
	color: var(--accent);
	font-family: var(--font-mono);
	font-size: 0.8rem;
}
.resume-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border: 1px solid var(--accent);
	color: var(--accent);
	border-radius: 10px;
	font-weight: 600;
	font-family: var(--font-heading);
	transition: all 0.3s ease;
	margin-top: 32px;
}
.resume-btn:hover {
	background: var(--accent);
	color: var(--bg);
	box-shadow: 0 0 30px var(--accent-glow);
}

/* ===== SKILLS ===== */
#skills {
	background: var(--bg-card);
}
.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}
.skill-group {
	padding: 32px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 16px;
	transition: all 0.3s ease;
}
.skill-group:hover {
	border-color: var(--accent-dim);
	transform: translateY(-4px);
}
.skill-group-title {
	font-size: 0.85rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
	font-family: var(--font-mono);
	font-weight: 500;
}
.skill-items {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.skill-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 0.85rem;
	color: var(--text-dim);
	transition: all 0.3s ease;
	font-weight: 500;
}
.skill-item:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-2px);
}
.skill-item svg {
	width: 18px;
	height: 18px;
}
/* ===== PROJECTS ===== */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.project-card {
	position: relative;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
}
.project-card:hover {
	border-color: var(--accent-dim);
	transform: translateY(-6px);
	box-shadow: 0 20px 60px var(--shadow-dark);
}
.project-visual {
	height: 200px;
	background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.project-visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, var(--bg-card));
	z-index: 1;
}
.project-icon {
	font-size: 3rem;
	z-index: 2;
}
.project-body {
	padding: 28px;
}
.project-category {
	font-size: 0.7rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-family: var(--font-mono);
	margin-bottom: 8px;
}
.project-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	font-weight: 600;
	transition: color 0.3s;
}
.project-card:hover h3 {
	color: var(--accent);
}
.project-card p {
	font-size: 0.875rem;
	color: var(--text-dim);
	line-height: 1.6;
	margin-bottom: 16px;
}
.project-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}
.project-tag {
	padding: 4px 10px;
	background: var(--accent-dim);
	border-radius: 4px;
	font-size: 0.7rem;
	color: var(--accent);
	font-family: var(--font-mono);
}
.project-links {
	display: flex;
	gap: 12px;
}
.project-link {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: var(--text-dim);
	transition: color 0.3s;
	font-weight: 500;
}
.project-link:hover {
	color: var(--accent);
}

/* Case Study */
.case-study {
	margin-top: 40px;
	padding: 48px;
	background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
	border: 1px solid var(--border);
	border-radius: 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	transition: all 0.4s ease;
}
.case-study:hover {
	border-color: var(--accent-dim);
	box-shadow: 0 20px 80px rgba(var(--accent-rgb), 0.05);
}
.case-study-content .label {
	font-size: 0.75rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-family: var(--font-mono);
	margin-bottom: 12px;
}
.case-study-content h3 {
	font-size: 1.8rem;
	margin-bottom: 16px;
	font-weight: 700;
}
.case-study-content p {
	color: var(--text-dim);
	line-height: 1.7;
	margin-bottom: 24px;
}
.case-study-visual {
	height: 300px;
	background: linear-gradient(
		135deg,
		rgba(var(--accent-rgb), 0.05),
		rgba(var(--accent-rgb), 0.02)
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	font-size: 4rem;
}

/* ===== EXPERIENCE ===== */
.timeline {
	position: relative;
	padding-left: 40px;
}
.timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		to bottom,
		var(--accent),
		var(--border),
		transparent
	);
}
.timeline-item {
	position: relative;
	padding-bottom: 48px;
}
.timeline-item:last-child {
	padding-bottom: 0;
}
.timeline-item::before {
	content: '';
	position: absolute;
	left: -45px;
	top: 8px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid var(--accent);
	background: var(--bg);
	z-index: 2;
	transition: all 0.3s;
}
.timeline-item:hover::before {
	background: var(--accent);
	box-shadow: 0 0 20px var(--accent-glow);
}
.timeline-card {
	padding: 28px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	transition: all 0.3s ease;
}
.timeline-card:hover {
	border-color: var(--accent-dim);
	transform: translateX(8px);
}
.timeline-date {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--accent);
	margin-bottom: 8px;
}
.timeline-card h3 {
	font-size: 1.1rem;
	margin-bottom: 6px;
}
.timeline-card h4 {
	font-size: 0.9rem;
	color: var(--text-dim);
	font-weight: 400;
}
.timeline-card p {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-top: 4px;
}
.exp-divider {
	width: 100%;
	height: 1px;
	background: var(--border);
	margin: 14px 0;
}
.exp-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
}
.exp-list li {
	font-size: 0.84rem;
	color: var(--text-dim);
	line-height: 1.6;
	padding-left: 18px;
	position: relative;
}
.exp-list li::before {
	content: '▹';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--accent);
	font-size: 0.75rem;
	line-height: 1.6;
}
.exp-list li strong {
	color: var(--text);
	font-weight: 500;
}

/* ===== EDUCATION ===== */
#education {
	background: var(--bg-card);
}
.edu-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.edu-card {
	padding: 32px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 16px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}
.edu-card::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, var(--accent-dim), transparent);
	opacity: 0;
	transition: opacity 0.4s;
}
.edu-card:hover {
	border-color: var(--accent-dim);
	transform: translateY(-4px);
}
.edu-card:hover::after {
	opacity: 1;
}
.edu-card h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
	font-weight: 600;
}
.edu-card .school {
	color: var(--text-dim);
	font-size: 0.9rem;
	margin-bottom: 4px;
}
.edu-card .location {
	color: var(--text-muted);
	font-size: 0.8rem;
	margin-bottom: 12px;
}
.edu-card .year {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--accent);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.testimonial-card {
	padding: 32px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	transition: all 0.4s ease;
	position: relative;
}
.testimonial-card:hover {
	border-color: var(--accent-dim);
	transform: translateY(-4px);
}
.testimonial-card .quote {
	font-size: 2rem;
	color: var(--accent);
	font-family: serif;
	line-height: 1;
	margin-bottom: 16px;
}
.testimonial-card p {
	color: var(--text-dim);
	line-height: 1.7;
	font-size: 0.9rem;
	margin-bottom: 20px;
	font-style: italic;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.testimonial-author .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--accent-dim);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-weight: 700;
	font-size: 0.9rem;
}
.testimonial-author .info h5 {
	font-size: 0.85rem;
	font-weight: 600;
}
.testimonial-author .info span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* ===== CONTACT ===== */
#contact {
	position: relative;
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.contact-left h3 {
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 20px;
}
.contact-left h3 .accent {
	color: var(--accent);
}
.contact-left p {
	color: var(--text-dim);
	line-height: 1.7;
	margin-bottom: 32px;
	font-size: 1.05rem;
}
.contact-email {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	transition: all 0.3s;
	margin-bottom: 24px;
	color: var(--accent);
	font-family: var(--font-mono);
	font-size: 0.95rem;
}
.contact-email:hover {
	border-color: var(--accent);
	box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.1);
}
.contact-socials {
	display: flex;
	gap: 16px;
}
.social-link {
	width: 48px;
	height: 48px;
	border: 1px solid var(--border);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	color: var(--text-dim);
}
.social-link:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.15);
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.form-field {
	position: relative;
}
.form-field input,
.form-field textarea {
	width: 100%;
	padding: 16px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	color: var(--text);
	font-family: var(--font-body);
	font-size: 0.9rem;
	transition: all 0.3s;
	outline: none;
	resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.1);
}
.form-field textarea {
	min-height: 140px;
}
.submit-btn {
	padding: 16px 40px;
	background: var(--accent);
	color: var(--bg);
	font-weight: 700;
	font-size: 1rem;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	font-family: var(--font-heading);
	transition: all 0.3s;
	align-self: flex-start;
}
.submit-btn:hover {
	box-shadow: 0 0 40px var(--accent-glow);
	transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
	padding: 60px 0 30px;
	border-top: 1px solid var(--border);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr auto auto auto;
	gap: 60px;
	align-items: start;
	margin-bottom: 48px;
}
.footer-brand h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 8px;
}
.footer-brand p {
	color: var(--text-dim);
	font-size: 0.875rem;
	line-height: 1.6;
	max-width: 320px;
}
.footer-links h4 {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--text-dim);
	margin-bottom: 16px;
	font-family: var(--font-mono);
}
.footer-links a {
	display: block;
	color: var(--text-muted);
	font-size: 0.875rem;
	padding: 4px 0;
	transition: color 0.3s;
}
.footer-links a:hover {
	color: var(--accent);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* ===== CLIP PATH DIVIDERS ===== */
.divider-angle {
	width: 100%;
	height: 80px;
	position: relative;
	overflow: hidden;
	margin-top: -1px;
}
.divider-angle::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--bg-card);
	clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay-1 {
	transition-delay: 0.1s;
}
.reveal-delay-2 {
	transition-delay: 0.2s;
}
.reveal-delay-3 {
	transition-delay: 0.3s;
}
.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ===== AVAILABILITY STATUS ===== */
.availability {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--bg-card);
	border: 1px solid rgba(var(--accent-rgb), 0.25);
	border-radius: 100px;
	font-size: 0.8rem;
	color: var(--accent);
	font-family: var(--font-mono);
	margin-bottom: 20px;
}
.availability .live-dot {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

/* ===== NON-HERO PAGE SPACING ===== */
/* Pages without hero need top spacing for fixed navbar */
#skills:first-of-type,
#projects:first-of-type,
#experience:first-of-type,
#testimonials:first-of-type {
	padding-top: calc(var(--nav-height) + 60px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero-left {
		max-width: 100%;
	}
	.hero-role {
		margin: 0 auto 40px;
	}
	.hero-stats {
		justify-content: center;
	}
	.hero-right {
		display: none;
	}
	.about-grid {
		grid-template-columns: 1fr;
	}
	.projects-grid {
		grid-template-columns: 1fr;
	}
	.case-study {
		grid-template-columns: 1fr;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.edu-grid {
		grid-template-columns: 1fr;
	}
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	nav {
		padding: 0 20px;
	}
	.nav-links,
	.nav-badge {
		display: none;
	}
	.desktop-text {
		display: none;
	}
	.mobile-text {
		display: inline;
	}
	.nav-cta {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.mobile-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: var(--mobile-bg);
		backdrop-filter: blur(20px);
		z-index: 1000;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 32px;
	}
	.mobile-menu.open {
		display: flex;
	}
	.mobile-menu a {
		font-size: 1.5rem;
		color: var(--text);
		font-family: var(--font-heading);
		font-weight: 600;
		transition: color 0.3s;
	}
	.mobile-menu a:hover {
		color: var(--accent);
	}
	.mobile-close {
		position: absolute;
		top: 24px;
		right: 24px;
		font-size: 1.5rem;
		color: var(--text);
		cursor: pointer;
		background: none;
		border: none;
	}
	section {
		padding: 80px 0;
	}
	#about::before {
		height: 80px;
	}
	.hero-name {
		font-size: 2.5rem;
	}
	.hero-stats {
		gap: 16px;
	}
	.stat-chip {
		padding: 12px 16px;
		min-width: 100px;
	}
	.stat-chip .number {
		font-size: 1.3rem;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
}
