:root {
	--bg-color: #fcfcfc;
	--text-primary: #111111;
	--text-secondary: #666666;
	--accent-color: #000000;
}

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

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-primary);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-font-smoothing: antialiased;
	padding: 2rem;
}

/* Container */
.container {
	max-width: 600px;
	width: 100%;
	text-align: center;
	animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

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

/* Typography */
.name {
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.title {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

.company-link {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: border-color 0.2s ease;
}

.company-link:hover {
	border-color: var(--text-primary);
}

.location {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	opacity: 0.8;
}

/* Links Section */
.info {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

/* Minimal Link */
.link-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-primary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	padding-bottom: 2px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease;
}

.link-item:hover {
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

/* Projects Section */
.projects {
	margin-top: 4rem;
	animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.projects-title {
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--text-secondary);
	margin-bottom: 1rem;
	opacity: 0.7;
}

.projects-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	max-width: 600px;
	margin: 0 auto;
	justify-content: center;
	align-items: baseline;
	line-height: 2;
}

.project-card {
	display: inline-flex;
	text-decoration: none;
	color: var(--text-primary);
	transition: all 0.2s ease;
	font-size: 0.95rem;
	font-weight: 400;
	border-bottom: 1px solid rgba(0, 0, 0, 0);
	padding-bottom: 1px;
}

.project-card:hover {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.project-name {
	color: var(--text-primary);
}

.project-tag {
	display: none;
}

/* Responsive */
@media (max-width: 640px) {
	body {
		padding: 1.5rem;
	}

	.name {
		font-size: 1.25rem;
	}

	.title {
		font-size: 0.95rem;
	}

	.projects {
		margin-top: 3rem;
	}

	.projects-grid {
		gap: 0.5rem 1rem;
		line-height: 1.8;
	}

	.project-card {
		font-size: 0.9rem;
	}
}
