	/*  Variables  */
	:root {
		--primary: #2979FF;
		--primary-light: #5C9EFF;
		--accent: #00E5FF;
		--accent-dim: rgba(0, 229, 255, 0.12);
		--bg: #080D1A;
		--bg2: #0D1526;
		--surface: #111827;
		--surface2: #1A2438;
		--border: rgba(255, 255, 255, 0.07);
		--text: #E8EDF5;
		--text2: #8A99B3;
		--text3: #4A5568;
		--r: 14px;
		--rs: 8px;
		--shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
		--glow: 0 0 40px rgba(41, 121, 255, 0.18);
		--ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	/*  Reset */
	*,
	*::before,
	*::after {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	html {
		scroll-behavior: smooth;
	}

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

	a {
		color: inherit;
		text-decoration: none;
	}

	ul {
		list-style: none;
	}

	::selection {
		background: var(--primary);
		color: #fff;
	}

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

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

	::-webkit-scrollbar-thumb {
		background: #1a2e6e;
		border-radius: 3px;
	}

	/*  Layout */
	section {
		padding: 96px 6vw;
	}

	.inner {
		max-width: 1200px;
		margin: 0 auto;
	}

	.s-label {
		font-size: 0.73rem;
		font-weight: 700;
		letter-spacing: 2px;
		color: var(--primary);
		text-transform: uppercase;
		margin-bottom: 0.6rem;
	}

	.s-title {
		font-size: clamp(1.9rem, 4vw, 2.7rem);
		font-weight: 800;
		letter-spacing: -1px;
		line-height: 1.15;
		margin-bottom: 0.9rem;
	}

	.s-title span {
		color: var(--primary-light);
	}

	.s-sub {
		color: var(--text2);
		max-width: 560px;
		font-size: 1rem;
		line-height: 1.7;
	}

	.s-head {
		margin-bottom: 3.5rem;
	}

	/*  Shared buttons  */
	.btn {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 13px 26px;
		border-radius: 50px;
		font-weight: 600;
		font-size: 0.9rem;
		transition: all var(--ease);
		cursor: pointer;
	}

	.btn-p {
		background: var(--primary);
		color: #fff;
		box-shadow: 0 4px 20px rgba(41, 121, 255, 0.3);
	}

	.btn-p:hover {
		background: var(--primary-light);
		transform: translateY(-2px);
		box-shadow: 0 8px 28px rgba(41, 121, 255, 0.5);
	}

	.btn-o {
		background: transparent;
		color: var(--text);
		border: 1px solid var(--border);
	}

	.btn-o:hover {
		border-color: var(--primary);
		color: var(--primary-light);
		transform: translateY(-2px);
		background: rgba(41, 121, 255, 0.06);
	}

	/*  Scroll reveal  */
	.rv {
		opacity: 0;
		transform: translateY(28px);
		transition: opacity 0.65s ease, transform 0.65s ease;
	}

	.rv.on {
		opacity: 1;
		transform: none;
	}

	.d1 {
		transition-delay: 0.1s;
	}

	.d2 {
		transition-delay: 0.2s;
	}

	.d3 {
		transition-delay: 0.3s;
	}

	.d4 {
		transition-delay: 0.4s;
	}

	/*  Nav */
	nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 900;
		height: 66px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 6vw;
		transition: background var(--ease), box-shadow var(--ease);
	}

	nav.scrolled {
		background: rgba(8, 13, 26, 0.92);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		box-shadow: 0 1px 0 var(--border);
	}

	.nav-logo {
		font-weight: 800;
		font-size: 1.3rem;
		letter-spacing: -0.5px;
		background: linear-gradient(135deg, #5C9EFF, #00E5FF);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		color: transparent;
	}

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

	.nav-links a {
		font-size: 0.87rem;
		font-weight: 500;
		color: var(--text2);
		transition: color var(--ease);
		position: relative;
		padding-bottom: 3px;
	}

	.nav-links a::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 2px;
		background: var(--primary);
		transition: width var(--ease);
	}

	.nav-links a:hover {
		color: var(--text);
	}

	.nav-links a:hover::after {
		width: 100%;
	}

	.nav-btn {
		padding: 8px 20px;
		background: var(--primary);
		color: #fff;
		border-radius: 50px;
		font-size: 0.87rem;
		font-weight: 600;
		white-space: nowrap;
		transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
	}

	.nav-btn:hover {
		background: var(--primary-light);
		transform: translateY(-1px);
		box-shadow: 0 4px 20px rgba(41, 121, 255, 0.45);
	}

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

	.burger span {
		width: 22px;
		height: 2px;
		background: var(--text);
		border-radius: 2px;
	}

	.mob-nav {
		display: none;
		position: fixed;
		inset: 0;
		z-index: 950;
		background: var(--bg);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2.5rem;
	}

	.mob-nav.open {
		display: flex;
	}

	.mob-nav a {
		font-size: 1.6rem;
		font-weight: 700;
	}

	.mob-close {
		position: absolute;
		top: 18px;
		right: 18px;
		background: none;
		border: none;
		color: var(--text);
		cursor: pointer;
	}

	.mob-close .material-icons-round {
		font-size: 30px;
	}

	/*  Hero */
	#hero {
		min-height: 100vh;
		display: flex;
		align-items: center;
		padding: 100px 6vw 60px;
		position: relative;
		overflow: hidden;
	}

	.hero-bg {
		position: absolute;
		inset: 0;
		background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(41, 121, 255, 0.11) 0%, transparent 70%), radial-gradient(ellipse 45% 45% at 15% 85%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
	}

	canvas {
		position: absolute;
		inset: 0;
		opacity: 0.35;
	}

	.hero-inner {
		position: relative;
		z-index: 1;
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		gap: 4rem;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}

	.badge {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: var(--accent-dim);
		border: 1px solid rgba(0, 229, 255, 0.22);
		color: var(--accent);
		padding: 6px 14px;
		border-radius: 50px;
		font-size: 0.78rem;
		font-weight: 700;
		letter-spacing: 0.4px;
		margin-bottom: 1.5rem;
		animation: up 0.6s ease both;
	}

	.badge-dot {
		width: 7px;
		height: 7px;
		background: var(--accent);
		border-radius: 50%;
		animation: blink 2s infinite;
	}

	.hero-name {
		font-size: clamp(2.8rem, 6vw, 4.6rem);
		font-weight: 800;
		letter-spacing: -2px;
		line-height: 1.05;
		animation: up 0.6s 0.1s ease both;
	}

	.hero-name span {
		background: linear-gradient(135deg, #5C9EFF, #00E5FF);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		color: transparent;
	}

	.hero-role {
		font-size: clamp(1rem, 2vw, 1.2rem);
		color: var(--text2);
		margin: 0.9rem 0 0.4rem;
		animation: up 0.6s 0.18s ease both;
	}

	.hero-co {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		color: var(--primary-light);
		font-weight: 500;
		font-size: 0.95rem;
		animation: up 0.6s 0.24s ease both;
	}

	.hero-bio {
		color: var(--text2);
		max-width: 520px;
		margin: 1.2rem 0 2rem;
		font-size: 1rem;
		line-height: 1.75;
		animation: up 0.6s 0.3s ease both;
	}

	.hero-bio em {
		color: var(--accent);
		font-style: italic;
	}

	.hero-btns {
		display: flex;
		gap: 1rem;
		flex-wrap: wrap;
		animation: up 0.6s 0.38s ease both;
	}

	.hero-stats {
		display: flex;
		gap: 2.5rem;
		margin-top: 2.5rem;
		animation: up 0.6s 0.46s ease both;
	}

	.stat-n {
		font-size: 1.9rem;
		font-weight: 800;
		color: var(--primary-light);
		line-height: 1;
	}

	.stat-l {
		font-size: 0.72rem;
		color: var(--text3);
		margin-top: 4px;
		text-transform: uppercase;
		letter-spacing: 0.6px;
	}

	.avatar-wrap {
		position: relative;
		flex-shrink: 0;
		animation: up 0.6s 0.14s ease both;
	}

	.avatar-ring {
		width: 270px;
		height: 270px;
		border-radius: 50%;
		background: conic-gradient(var(--primary), var(--accent), var(--primary));
		padding: 3px;
		animation: spin 9s linear infinite;
	}

	.avatar-inner {
		width: 100%;
		height: 100%;
		border-radius: 50%;
		overflow: hidden;
		background: var(--bg2);
	}

	.avatar-inner img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.avatar-pill {
		position: absolute;
		bottom: 14px;
		right: 4px;
		background: var(--surface2);
		border: 1px solid var(--border);
		border-radius: 50px;
		padding: 7px 13px;
		display: flex;
		align-items: center;
		gap: 6px;
		font-size: 0.78rem;
		font-weight: 600;
		color: var(--text2);
		box-shadow: var(--shadow);
	}

	.avatar-pill .material-icons-round {
		font-size: 15px;
		color: var(--primary);
	}

	/*  About */
	#about {
		background: var(--bg2);
	}

	.about-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
		align-items: center;
	}

	.about-text p {
		color: var(--text2);
		line-height: 1.85;
		margin-bottom: 1.1rem;
	}

	.about-text p strong {
		color: var(--text);
	}

	.chips {
		display: flex;
		flex-wrap: wrap;
		gap: 9px;
		margin-top: 1.8rem;
	}

	.chip {
		display: inline-flex;
		align-items: center;
		gap: 5px;
		padding: 6px 13px;
		border-radius: 50px;
		background: var(--surface2);
		border: 1px solid var(--border);
		font-size: 0.79rem;
		font-weight: 500;
		color: var(--text2);
		transition: all var(--ease);
	}

	.chip .material-icons-round {
		font-size: 13px;
	}

	.chip:hover {
		border-color: var(--primary);
		color: var(--primary-light);
		background: rgba(41, 121, 255, 0.07);
	}

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

	.hl-card {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--r);
		padding: 1.4rem;
		transition: transform var(--ease), border-color var(--ease);
	}

	.hl-card:hover {
		transform: translateY(-3px);
		border-color: rgba(41, 121, 255, 0.3);
	}

	.hl-icon {
		font-size: 1.5rem;
		margin-bottom: 0.6rem;
	}

	.hl-num {
		font-size: 1.6rem;
		font-weight: 800;
		color: var(--primary-light);
		line-height: 1;
	}

	.hl-lbl {
		font-size: 0.78rem;
		color: var(--text2);
		margin-top: 3px;
	}

	/*  Experience  */
	#experience {
		background: var(--bg);
	}

	.exp-timeline {
		position: relative;
		max-width: 900px;
	}

	.exp-timeline::before {
		content: '';
		position: absolute;
		left: 19px;
		top: 8px;
		bottom: 0;
		width: 2px;
		background: linear-gradient(to bottom, var(--primary), rgba(41, 121, 255, 0.05));
	}

	.exp-item {
		position: relative;
		padding-left: 56px;
		margin-bottom: 2.5rem;
	}

	.exp-dot {
		position: absolute;
		left: 10px;
		top: 6px;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		background: var(--primary);
		border: 3px solid var(--bg);
		box-shadow: 0 0 0 2px var(--primary);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 9px;
		z-index: 1;
	}

	.exp-dot.current {
		background: var(--accent);
		box-shadow: 0 0 0 2px var(--accent), 0 0 12px rgba(0, 229, 255, 0.4);
		animation: blink-dot 2s infinite;
	}

	.exp-card {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--r);
		padding: 1.5rem 1.75rem;
		transition: border-color var(--ease), box-shadow var(--ease);
	}

	.exp-card:hover {
		border-color: rgba(41, 121, 255, 0.3);
		box-shadow: var(--glow);
	}

	.exp-header {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 1rem;
		margin-bottom: 0.5rem;
		flex-wrap: wrap;
	}

	.exp-role {
		font-weight: 700;
		font-size: 1rem;
		color: var(--text);
	}

	.exp-badge-current {
		display: inline-flex;
		align-items: center;
		gap: 5px;
		background: rgba(0, 229, 255, 0.1);
		border: 1px solid rgba(0, 229, 255, 0.25);
		color: var(--accent);
		padding: 3px 10px;
		border-radius: 50px;
		font-size: 0.72rem;
		font-weight: 700;
		white-space: nowrap;
	}

	.exp-company {
		color: var(--primary-light);
		font-size: 0.88rem;
		font-weight: 600;
		margin-bottom: 0.2rem;
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.exp-company .emp-type {
		color: var(--text3);
		font-weight: 400;
		font-size: 0.8rem;
	}

	.exp-meta {
		display: flex;
		gap: 1rem;
		flex-wrap: wrap;
		margin-bottom: 1rem;
	}

	.exp-date {
		font-size: 0.78rem;
		color: var(--text3);
		display: flex;
		align-items: center;
		gap: 4px;
	}

	.exp-date .material-icons-round {
		font-size: 13px;
	}

	.exp-points {
		padding-left: 0;
		display: flex;
		flex-direction: column;
		gap: 5px;
	}

	.exp-points li {
		display: flex;
		gap: 8px;
		font-size: 0.87rem;
		color: var(--text2);
		line-height: 1.55;
	}

	.exp-points li::before {
		content: '-';
		color: var(--primary);
		flex-shrink: 0;
		margin-top: 1px;
		font-size: 0.75rem;
	}

	.exp-tags {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
		margin-top: 1rem;
	}

	/*  Skills */
	#skills {
		background: var(--bg2);
	}

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

	.sk-card {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--r);
		padding: 1.75rem;
		transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
	}

	.sk-card:hover {
		transform: translateY(-4px);
		box-shadow: var(--glow);
		border-color: rgba(41, 121, 255, 0.28);
	}

	.sk-head {
		display: flex;
		align-items: center;
		gap: 11px;
		margin-bottom: 1.5rem;
	}

	.sk-icon {
		width: 42px;
		height: 42px;
		border-radius: 11px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
	}

	.ic-a {
		background: rgba(61, 220, 132, 0.13);
	}

	.ic-m {
		background: rgba(255, 145, 0, 0.13);
	}

	.ic-g {
		background: rgba(213, 0, 249, 0.13);
	}

	.ic-t {
		background: rgba(0, 229, 255, 0.13);
	}

	.sk-head h3 {
		font-size: 0.95rem;
		font-weight: 700;
	}

	.bars {
		display: flex;
		flex-direction: column;
		gap: 11px;
	}

	.bar-top {
		display: flex;
		justify-content: space-between;
		margin-bottom: 5px;
	}

	.bar-top span:first-child {
		font-size: 0.81rem;
		color: var(--text2);
	}

	.bar-top span:last-child {
		font-size: 0.77rem;
		color: var(--text3);
	}

	.bar-track {
		height: 5px;
		background: var(--surface2);
		border-radius: 3px;
		overflow: hidden;
	}

	.bar-fill {
		height: 100%;
		width: 0;
		border-radius: 3px;
		background: linear-gradient(90deg, var(--primary), var(--accent));
		transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
	}

	/*  Projects  */
	#projects {
		background: var(--bg);
	}

	.filter-row {
		display: flex;
		gap: 9px;
		flex-wrap: wrap;
		margin-bottom: 2.5rem;
	}

	.fbtn {
		padding: 7px 17px;
		border-radius: 50px;
		font-size: 0.81rem;
		font-weight: 600;
		background: var(--surface);
		border: 1px solid var(--border);
		color: var(--text2);
		cursor: pointer;
		transition: all var(--ease);
	}

	.fbtn.on,
	.fbtn:hover {
		background: var(--primary);
		color: #fff;
		border-color: var(--primary);
	}

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

	.pc {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--r);
		padding: 1.75rem;
		display: flex;
		flex-direction: column;
		transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
		position: relative;
		overflow: hidden;
	}

	.pc::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(90deg, var(--primary), var(--accent));
		opacity: 0;
		transition: opacity var(--ease);
	}

	.pc:hover {
		transform: translateY(-5px);
		box-shadow: var(--glow);
		border-color: rgba(41, 121, 255, 0.22);
	}

	.pc:hover::before {
		opacity: 1;
	}

	.pc-top {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 1rem;
	}

	.pc-icon {
		font-size: 28px;
	}

	.pc-meta {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.pc-stars {
		display: flex;
		align-items: center;
		gap: 4px;
		font-size: 0.77rem;
		color: var(--text3);
		font-weight: 500;
	}

	.pc-stars .material-icons-round {
		font-size: 13px;
		color: #FFD600;
	}

	.pc-link {
		width: 33px;
		height: 33px;
		border-radius: 50%;
		background: var(--surface2);
		border: 1px solid var(--border);
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--text3);
		transition: all var(--ease);
	}

	.pc-link:hover {
		border-color: var(--primary);
		color: var(--primary);
		background: rgba(41, 121, 255, 0.1);
	}

	.pc-link .material-icons-round {
		font-size: 15px;
	}

	.pc h3 {
		font-size: 1.02rem;
		font-weight: 700;
		margin-bottom: 0.45rem;
	}

	.pc p {
		color: var(--text2);
		font-size: 0.87rem;
		line-height: 1.6;
		flex: 1;
		margin-bottom: 1.2rem;
	}

	.tags {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
	}

	.tag {
		padding: 3px 9px;
		border-radius: 50px;
		font-size: 0.71rem;
		font-weight: 600;
		background: var(--surface2);
		color: var(--text3);
		border: 1px solid var(--border);
	}

	.tk {
		background: rgba(123, 97, 255, 0.1);
		color: #7B61FF;
		border-color: rgba(123, 97, 255, 0.18);
	}

	.tp {
		background: rgba(255, 214, 0, 0.1);
		color: #E6C200;
		border-color: rgba(255, 214, 0, 0.18);
	}

	.tj {
		background: rgba(255, 111, 0, 0.1);
		color: #FF6F00;
		border-color: rgba(255, 111, 0, 0.18);
	}

	.tc {
		background: rgba(130, 36, 227, 0.1);
		color: #9C27B0;
		border-color: rgba(130, 36, 227, 0.18);
	}

	.tm {
		background: rgba(0, 200, 83, 0.1);
		color: #00C853;
		border-color: rgba(0, 200, 83, 0.18);
	}

	.tu {
		background: rgba(213, 0, 249, 0.1);
		color: #D500F9;
		border-color: rgba(213, 0, 249, 0.18);
	}

	.tpp {
		background: rgba(0, 145, 255, 0.1);
		color: #0091FF;
		border-color: rgba(0, 145, 255, 0.18);
	}

	/*  Sites */
	#sites {
		background: var(--bg2);
		position: relative;
		overflow: hidden;
	}

	#sites::before {
		content: '';
		position: absolute;
		inset: 0;
		background:
			linear-gradient(135deg, rgba(41, 121, 255, 0.09), transparent 38%),
			linear-gradient(315deg, rgba(0, 229, 255, 0.05), transparent 44%);
		pointer-events: none;
	}

	#sites::after {
		content: '';
		position: absolute;
		inset: 0;
		background-image:
			linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
			linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
		background-size: 38px 38px;
		mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
		pointer-events: none;
	}

	#sites .inner {
		position: relative;
		z-index: 1;
	}

	.sites-head {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		gap: 2rem;
		margin-bottom: 2.5rem;
	}

	.sites-count {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		flex-shrink: 0;
		padding: 8px 14px;
		border: 1px solid rgba(0, 229, 255, 0.2);
		border-radius: 50px;
		background: rgba(0, 229, 255, 0.08);
		color: var(--accent);
		font-size: 0.78rem;
		font-weight: 700;
	}

	.sites-count .material-icons-round {
		font-size: 16px;
	}

	.sites-showcase {
		display: grid;
		grid-template-columns: minmax(280px, 0.85fr) 1.55fr;
		gap: 1.5rem;
		align-items: stretch;
	}

	.site-feature,
	.site-card {
		background: rgba(17, 24, 39, 0.92);
		border: 1px solid var(--border);
		border-radius: var(--r);
		position: relative;
		overflow: hidden;
		transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
	}

	.site-feature::before,
	.site-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(90deg, var(--primary), var(--accent));
		opacity: 0.7;
	}

	.site-feature:hover,
	.site-card:hover {
		transform: translateY(-5px);
		border-color: rgba(41, 121, 255, 0.32);
		box-shadow: var(--glow);
		background: rgba(20, 30, 48, 0.96);
	}

	.site-feature {
		min-height: 100%;
		padding: 2rem;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		background:
			linear-gradient(145deg, rgba(17, 24, 39, 0.97), rgba(26, 36, 56, 0.9)),
			linear-gradient(90deg, rgba(41, 121, 255, 0.14), rgba(0, 229, 255, 0.08));
	}

	.site-feature-top,
	.site-card-top,
	.site-feature-foot {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
	}

	.site-icon-lg,
	.site-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		border: 1px solid rgba(255, 255, 255, 0.08);
	}

	.site-icon-lg {
		width: 58px;
		height: 58px;
		border-radius: 16px;
		background: linear-gradient(135deg, rgba(41, 121, 255, 0.24), rgba(0, 229, 255, 0.15));
		color: var(--accent);
	}

	.site-icon-lg .material-icons-round {
		font-size: 29px;
	}

	.site-status,
	.site-kicker {
		color: var(--accent);
		font-size: 0.72rem;
		font-weight: 800;
		letter-spacing: 0.9px;
		text-transform: uppercase;
	}

	.site-status {
		padding: 5px 10px;
		border: 1px solid rgba(0, 229, 255, 0.2);
		border-radius: 50px;
		background: rgba(0, 229, 255, 0.08);
		letter-spacing: 0.4px;
	}

	.site-feature h3 {
		font-size: clamp(1.55rem, 3vw, 2.2rem);
		line-height: 1.05;
		margin: 0.4rem 0 0.7rem;
		letter-spacing: -0.6px;
	}

	.site-feature p {
		color: var(--text2);
		font-size: 0.96rem;
		line-height: 1.7;
	}

	.site-feature-foot {
		margin-top: 2rem;
		padding-top: 1.2rem;
		border-top: 1px solid var(--border);
		color: var(--primary-light);
		font-size: 0.85rem;
		font-weight: 700;
		overflow-wrap: anywhere;
	}

	.site-feature-foot .material-icons-round {
		font-size: 18px;
		color: var(--accent);
	}

	.site-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.site-card {
		min-height: 210px;
		padding: 1.35rem;
		display: flex;
		flex-direction: column;
	}

	.site-icon {
		width: 43px;
		height: 43px;
		border-radius: 12px;
	}

	.site-icon .material-icons-round {
		font-size: 22px;
	}

	.si-container {
		background: rgba(92, 158, 255, 0.13);
		color: var(--primary-light);
	}

	.si-travel {
		background: rgba(0, 229, 255, 0.13);
		color: var(--accent);
	}

	.si-spanish {
		background: rgba(255, 214, 0, 0.12);
		color: #E6C200;
	}

	.si-games {
		background: rgba(213, 0, 249, 0.1);
		color: #D500F9;
	}

	.si-homeopathy {
		background: rgba(0, 200, 83, 0.1);
		color: #00C853;
	}

	.site-arrow {
		width: 32px;
		height: 32px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--surface2);
		border: 1px solid var(--border);
		color: var(--text3);
		font-size: 17px;
		transition: all var(--ease);
	}

	.site-card:hover .site-arrow {
		background: rgba(41, 121, 255, 0.1);
		border-color: var(--primary);
		color: var(--accent);
	}

	.site-card h3 {
		font-size: 1rem;
		font-weight: 750;
		line-height: 1.25;
		margin: 1.1rem 0 0.45rem;
	}

	.site-card p {
		color: var(--text2);
		font-size: 0.86rem;
		line-height: 1.6;
		flex: 1;
		margin-bottom: 1rem;
	}

	.site-domain {
		color: var(--text3);
		font-size: 0.76rem;
		font-weight: 700;
		overflow-wrap: anywhere;
	}

	/*  YouTube */
	#youtube {
		background: var(--bg);
	}

	.yt-card {
		background: linear-gradient(135deg, #150505 0%, #220808 100%);
		border: 1px solid rgba(255, 0, 0, 0.18);
		border-radius: var(--r);
		padding: 3.5rem;
		display: flex;
		align-items: center;
		gap: 3rem;
		position: relative;
		overflow: hidden;
		max-width: 860px;
	}

	.yt-card::after {
		content: '';
		position: absolute;
		inset: 0;
		background: radial-gradient(ellipse at 85% 50%, rgba(255, 0, 0, 0.07) 0%, transparent 60%);
	}

	.yt-svg {
		flex-shrink: 0;
		position: relative;
		z-index: 1;
	}

	.yt-svg svg {
		width: 76px;
		height: 76px;
		filter: drop-shadow(0 0 22px rgba(255, 0, 0, 0.5));
	}

	.yt-body {
		position: relative;
		z-index: 1;
	}

	.yt-body h3 {
		font-size: 1.55rem;
		font-weight: 800;
		margin-bottom: 0.5rem;
	}

	.yt-body p {
		color: var(--text2);
		margin-bottom: 1.5rem;
		max-width: 400px;
	}

	.btn-yt {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: #FF0000;
		color: #fff;
		padding: 12px 24px;
		border-radius: 50px;
		font-weight: 700;
		font-size: 0.9rem;
		transition: all var(--ease);
	}

	.btn-yt:hover {
		background: #CC0000;
		transform: translateY(-2px);
		box-shadow: 0 8px 24px rgba(255, 0, 0, 0.38);
	}

	.btn-yt .material-icons-round {
		font-size: 18px;
	}

	/*  Contact */
	#contact {
		background: var(--bg);
	}

	.contact-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
		align-items: start;
	}

	.soc-links {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.soc-link {
		display: flex;
		align-items: center;
		gap: 15px;
		padding: 15px 18px;
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--r);
		transition: all var(--ease);
	}

	.soc-link:hover {
		border-color: var(--primary);
		transform: translateX(6px);
		background: rgba(41, 121, 255, 0.05);
	}

	.soc-icon {
		width: 42px;
		height: 42px;
		border-radius: 11px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		font-size: 19px;
	}

	.si-gh {
		background: rgba(255, 255, 255, 0.07);
		color: #fff;
	}

	.si-li {
		background: rgba(10, 102, 194, 0.18);
		color: #0A66C2;
	}

	.si-yt {
		background: rgba(255, 0, 0, 0.12);
		color: #FF0000;
	}

	.si-lt {
		background: rgba(57, 190, 117, 0.15);
		color: #39BE75;
		font-size: 16px;
	}

	.soc-txt .lbl {
		font-weight: 600;
		font-size: 0.88rem;
	}

	.soc-txt .url {
		color: var(--text3);
		font-size: 0.77rem;
		margin-top: 2px;
	}

	.soc-arr {
		margin-left: auto;
		color: var(--text3);
	}

	.soc-link:hover .soc-arr {
		color: var(--primary);
	}

	.cf {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--r);
		padding: 2rem;
	}

	.cf h3 {
		font-size: 1.05rem;
		font-weight: 700;
		margin-bottom: 1.5rem;
	}

	.fg {
		margin-bottom: 1.1rem;
	}

	.fg label {
		font-size: 0.81rem;
		font-weight: 600;
		color: var(--text2);
		display: block;
		margin-bottom: 5px;
	}

	.fg input,
	.fg textarea {
		width: 100%;
		padding: 10px 14px;
		background: var(--bg);
		border: 1px solid var(--border);
		border-radius: var(--rs);
		color: var(--text);
		font-family: 'Inter', sans-serif;
		font-size: 0.88rem;
		outline: none;
		transition: border-color var(--ease);
	}

	.fg input:focus,
	.fg textarea:focus {
		border-color: var(--primary);
	}

	.fg textarea {
		resize: vertical;
		min-height: 96px;
	}

	.fg input::placeholder,
	.fg textarea::placeholder {
		color: var(--text3);
	}

	.btn-send {
		width: 100%;
		padding: 12px;
		background: var(--primary);
		color: #fff;
		border: none;
		border-radius: var(--rs);
		font-weight: 700;
		font-size: 0.9rem;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 7px;
		transition: all var(--ease);
	}

	.btn-send:hover {
		background: var(--primary-light);
	}

	.btn-send .material-icons-round {
		font-size: 17px;
	}

	/*  Footer */
	footer {
		background: var(--bg2);
		border-top: 1px solid var(--border);
		padding: 2rem 6vw;
		text-align: center;
		color: var(--text3);
		font-size: 0.81rem;
	}

	footer a {
		color: var(--primary-light);
	}

	/*  Scroll-top  */
	.stbtn {
		position: fixed;
		bottom: 26px;
		right: 26px;
		z-index: 800;
		width: 42px;
		height: 42px;
		border-radius: 50%;
		background: var(--primary);
		color: #fff;
		border: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 18px rgba(41, 121, 255, 0.38);
		opacity: 0;
		pointer-events: none;
		transition: opacity var(--ease), transform var(--ease);
	}

	.stbtn.on {
		opacity: 1;
		pointer-events: all;
	}

	.stbtn:hover {
		transform: translateY(-3px);
	}

	/*  Keyframes  */
	@keyframes up {
		from {
			opacity: 0;
			transform: translateY(22px);
		}

		to {
			opacity: 1;
			transform: none;
		}
	}

	@keyframes blink {

		0%,
		100% {
			opacity: 1;
		}

		50% {
			opacity: 0.4;
		}
	}

	@keyframes spin {
		to {
			transform: rotate(360deg);
		}
	}

	@keyframes blink-dot {

		0%,
		100% {
			box-shadow: 0 0 0 2px var(--accent), 0 0 12px rgba(0, 229, 255, 0.4);
		}

		50% {
			box-shadow: 0 0 0 2px var(--accent), 0 0 20px rgba(0, 229, 255, 0.7);
		}
	}

	/*  Responsive  */
	@media (max-width: 900px) {

		.hero-inner,
		.about-grid,
		.contact-grid,
		.sites-showcase {
			grid-template-columns: 1fr;
		}

		.hero-inner {
			text-align: center;
		}

		.avatar-wrap {
			display: none;
		}

		.hero-btns,
		.hero-stats {
			justify-content: center;
		}

		.about-grid,
		.contact-grid {
			gap: 2.5rem;
		}

		.yt-card {
			flex-direction: column;
			text-align: center;
			padding: 2.5rem;
			gap: 1.5rem;
		}

		.about-highlights {
			grid-template-columns: repeat(4, 1fr);
		}

		.sites-head {
			align-items: flex-start;
			flex-direction: column;
		}
	}

	@media (max-width: 760px) {

		.nav-links,
		.nav-btn {
			display: none;
		}

		.burger {
			display: flex;
		}
	}

	@media (max-width: 640px) {

		.nav-links,
		.nav-btn {
			display: none;
		}

		.burger {
			display: flex;
		}

		.proj-grid,
		.skills-grid,
		.site-list {
			grid-template-columns: 1fr;
		}

		.about-highlights {
			grid-template-columns: 1fr 1fr;
		}

		section {
			padding: 70px 5vw;
		}
	}
