@font-face {
	font-family: "BSD Fixed";
	src: local("BSD Fixed"), local("Bsd Fixed"), local("BSDFixed");
	font-display: swap;
}

:root {
	color-scheme: dark;
	--bg: #02070f;
	--bg-deep: #00030a;
	--panel: #071524;
	--panel-edge: #0c2138;
	--text: #d6e6ff;
	--muted: #7a91b8;
	--accent: #4cc9ff;
	--accent-2: #21a2ff;
	--glow: rgba(76, 201, 255, 0.25);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	background: radial-gradient(1200px 800px at 80% -10%, rgba(20, 76, 140, 0.35), transparent 65%),
		radial-gradient(900px 700px at 10% 10%, rgba(10, 40, 90, 0.45), transparent 60%),
		var(--bg-deep);
	color: var(--text);
	font-family: "BSD Fixed", "Fira Mono", "IBM Plex Mono", "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;
	letter-spacing: 0.02em;
}

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

.bg-grid {
	position: fixed;
	inset: 0;
	background-image: linear-gradient(rgba(10, 26, 42, 0.7) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 26, 42, 0.7) 1px, transparent 1px);
	background-size: 56px 56px;
	opacity: 0.2;
	pointer-events: none;
	z-index: 0;
}

.ambient-orb {
	position: fixed;
	width: 680px;
	height: 680px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(76, 201, 255, 0.28) 0%, rgba(33, 162, 255, 0.08) 45%, transparent 70%);
	filter: blur(6px);
	opacity: 0.7;
	mix-blend-mode: screen;
	pointer-events: none;
	z-index: 0;
	animation: drift 26s ease-in-out infinite;
}

.ambient-orb--one {
	top: -120px;
	left: -80px;
}

.ambient-orb--two {
	width: 820px;
	height: 820px;
	bottom: -220px;
	right: -160px;
	opacity: 0.5;
	animation-delay: -8s;
}

.hero {
	position: relative;
	z-index: 1;
	padding: 96px 24px 48px;
}

.hero__inner {
	max-width: 960px;
	margin: 0 auto;
	display: grid;
	gap: 20px;
}

.eyebrow {
	text-transform: uppercase;
	font-size: 12px;
	color: var(--muted);
	letter-spacing: 0.35em;
}

.title {
	font-size: clamp(32px, 6vw, 56px);
	margin: 0;
}

.accent {
	color: var(--accent);
	text-shadow: 0 0 16px var(--glow);
}

.typing {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: clamp(18px, 3vw, 26px);
	color: var(--accent-2);
}

.typing__cursor {
	display: inline-block;
	animation: blink 1s step-start infinite;
}

.typing__text {
	min-height: 1.2em;
}

.subtitle {
	max-width: 560px;
	color: var(--muted);
	margin: 0;
	line-height: 1.6;
}

.links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn {
	padding: 12px 20px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(76, 201, 255, 0.25), rgba(33, 162, 255, 0.08));
	border: 1px solid rgba(76, 201, 255, 0.35);
	box-shadow: 0 0 20px rgba(76, 201, 255, 0.15);
}

.btn--ghost {
	background: rgba(7, 21, 36, 0.6);
	border-color: rgba(122, 145, 184, 0.3);
	box-shadow: none;
}

.content {
	position: relative;
	z-index: 1;
	padding: 0 24px 80px;
}

.section {
	max-width: 960px;
	margin: 0 auto;
}

.section__title {
	margin: 0 0 20px;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--muted);
}

.skills {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.skill {
	display: flex;
	gap: 14px;
	padding: 18px;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(10, 26, 42, 0.92), rgba(4, 12, 24, 0.95));
	border: 1px solid rgba(76, 201, 255, 0.18);
	box-shadow: 0 18px 32px rgba(2, 10, 24, 0.8), inset 0 0 24px rgba(76, 201, 255, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.skill:hover {
	transform: translateY(-3px);
	border-color: rgba(76, 201, 255, 0.4);
	box-shadow: 0 24px 36px rgba(2, 10, 24, 0.9), inset 0 0 28px rgba(76, 201, 255, 0.08);
}

.skill h3 {
	margin: 0 0 6px;
	font-size: 16px;
	color: var(--text);
}

.skill p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
}

.skill__icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: rgba(4, 12, 24, 0.7);
	border: 1px dashed rgba(76, 201, 255, 0.45);
	color: rgba(122, 145, 184, 0.8);
	font-size: 11px;
	text-transform: uppercase;
	flex-shrink: 0;
}

.skill__icon span {
	letter-spacing: 0.15em;
}

.skill__icon img {
	width: 22px;
	height: 22px;
	filter: drop-shadow(0 0 6px rgba(76, 201, 255, 0.25));
}

.footer {
	text-align: center;
	color: var(--muted);
	font-size: 12px;
	padding: 24px;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

@keyframes drift {
	0% {
		transform: translate(0, 0) scale(1);
	}
	40% {
		transform: translate(120px, 60px) scale(1.08);
	}
	70% {
		transform: translate(40px, 140px) scale(0.96);
	}
	100% {
		transform: translate(0, 0) scale(1);
	}
}

@media (max-width: 720px) {
	.hero {
		padding-top: 72px;
	}

	.typing {
		flex-wrap: wrap;
	}
}
