:root {
	--bg: #0b1824;
	--glass: rgba(255, 255, 255, 0.18);
	--stroke: rgba(255, 255, 255, 0.35);
	--text: #e6f1ff;
	--muted: #a9c1d9;
	--primary: #00a2ff;
	--primary-2: #4be3ff;
	--accent: #7aff7a;
	--shadow: rgba(0, 0, 0, 0.35);
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
	font-family: "Segoe UI", "Trebuchet MS", system-ui, -apple-system, Roboto, Arial, sans-serif;
	color: var(--text);
	background: radial-gradient(1200px 800px at 10% 10%, #0d2a42, #08131d 55%, #050c13);
	overflow-x: hidden;
}

.bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -2;
	filter: blur(0px);
	overflow: hidden;
}

.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.55;
	transform: translateZ(0);
}

.blob-1 {
	width: 42vw;
	height: 42vw;
	left: -8vw;
	top: -6vw;
	background: radial-gradient(circle at 30% 30%, #4be3ff, #00a2ff 40%, transparent 60%);
}

.blob-2 {
	width: 36vw;
	height: 36vw;
	right: -10vw;
	top: 10vh;
	background: radial-gradient(circle at 70% 40%, #7aff7a, #1cdd7d 45%, transparent 65%);
}

.blob-3 {
	width: 28vw;
	height: 28vw;
	left: 20vw;
	bottom: -6vw;
	background: radial-gradient(circle at 30% 60%, #ffd36b, #ff9b3d 45%, transparent 65%);
}

.bokeh {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,.2);
	filter: blur(6px);
	mix-blend-mode: screen;
}

.b1 {
	width: 120px;
	height: 120px;
	left: 12%;
	top: 28%;
	opacity: .35;
}

.b2 {
	width: 80px;
	height: 80px;
	right: 16%;
	top: 12%;
	opacity: .25;
}

.b3 {
	width: 100px;
	height: 100px;
	right: 26%;
	bottom: 20%;
	opacity: .2;
}

.shell {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(8px);
}

.chrome {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
	background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.1));
	border-bottom: 1px solid rgba(255,255,255,.2);
	padding: 10px 16px;
	box-shadow: 0 10px 30px var(--shadow);
}

.orb {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #c9f, #0af);
	box-shadow: inset 0 2px 4px rgba(255,255,255,.5), 0 2px 8px rgba(0,0,0,.35);
	border: 1px solid rgba(255,255,255,.5);
}

.window-title {
	font-weight: 600;
	letter-spacing: .2px;
	color: #eef6ff;
	text-shadow: 0 1px 0 rgba(0,0,0,.5);
}

.win-controls {
	display: flex;
	gap: 6px;
}

.ctrl {
	width: 12px;
	height: 12px;
	border-radius: 2px;
	border: 1px solid rgba(255,255,255,.4);
	background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.2));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 1px 0 rgba(0,0,0,.35);
}

.ctrl.close {
	background: linear-gradient(180deg, #ff8f8f, #d14545);
}

.nav {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
	padding: 10px 16px;
	background: rgba(0,0,0,.15);
	border-bottom: 1px solid rgba(255,255,255,.15);
}

.nav a {
	color: var(--text);
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.2);
	background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
	box-shadow: 0 6px 18px rgba(0,0,0,.25);
	transition: transform .2s ease, background .2s ease;
}

.nav a:hover {
	transform: translateY(-1px);
	background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.08));
}

.nav .cta {
	border-color: rgba(0,162,255,.5);
}

.container {
	max-width: 1100px;
	margin: 40px auto;
	padding: 0 16px;
}

.panel {
	margin: 24px 0;
	padding: 24px;
	border-radius: 20px;
	border: 1px solid var(--stroke);
	box-shadow: 0 20px 50px var(--shadow);
}

.glass {
	background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
	backdrop-filter: blur(14px) saturate(120%);
}

.hero {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 24px;
	align-items: center;
}

.hero h1 {
	font-size: clamp(36px, 6vw, 64px);
	line-height: 1.05;
	margin: 0 0 8px;
}

.hero h1 span {
	background: linear-gradient(90deg, var(--primary), var(--primary-2));
	-webkit-background-clip: text;
	color: transparent;
}

.tagline {
	color: var(--muted);
	margin: 0 0 16px;
}

.actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	text-decoration: none;
	color: #052035;
	background: linear-gradient(180deg, #ffffff, #c9e7ff);
	border: 1px solid rgba(255,255,255,.6);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 12px 24px rgba(0,0,0,.25);
	cursor: pointer;
	transition: transform .15s ease, filter .15s ease;
}

.btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.06);
}

.btn.primary {
	background: linear-gradient(180deg, #8fd3ff, #00a2ff);
	color: #052035;
}

.hero-badge {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.5);
	background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.1));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 12px 24px rgba(0,0,0,.35);
	min-height: 180px;
	display: grid;
	place-items: center;
	text-align: center;
}

.hero-badge .shine {
	position: absolute;
	inset: -60% -20% auto -20%;
	height: 60%;
	background: linear-gradient(120deg, rgba(255,255,255,.85), rgba(255,255,255,0) 30%);
	transform: rotate(-8deg);
}

.badge-body {
	position: relative;
	z-index: 1;
	padding: 16px;
}

.badge-top {
	font-weight: 600;
	opacity: .9;
}

.badge-mid {
	font-size: 22px;
	font-weight: 700;
	margin: 6px 0;
}

.badge-bottom {
	font-size: 14px;
	color: var(--muted);
}

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

.skill {
	padding: 16px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
	border: 1px solid rgba(255,255,255,.5);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 8px 18px rgba(0,0,0,.25);
}

.skill-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.skill .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, var(--accent), #00bb6e);
	box-shadow: 0 0 12px rgba(0,255,153,.6);
}

.skill h3 {
	margin: 0;
}

.skill ul {
	margin: 8px 0 0 18px;
	padding: 0;
}

.skill li {
	margin: 6px 0;
	color: #eaf5ff;
}

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

.project {
	padding: 16px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
	border: 1px solid rgba(255,255,255,.5);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 8px 18px rgba(0,0,0,.25);
}

.project-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.project h3 {
	margin: 0;
}

.chip {
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 999px;
	background: linear-gradient(180deg, #caffcb, #58e058);
	color: #052035;
	border: 1px solid rgba(255,255,255,.7);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.project .links {
	margin-top: 10px;
	display: flex;
	gap: 10px;
}

.project .links a {
	color: var(--text);
	text-decoration: none;
	border-bottom: 1px dotted rgba(255,255,255,.6);
}

#contact form {
	display: grid;
	gap: 12px;
}

#contact .grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

label span {
	display: block;
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 6px;
}

input,
textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 12px;
	color: var(--text);
	border: 1px solid rgba(255,255,255,.5);
	background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 6px 14px rgba(0,0,0,.25);
	outline: none;
}

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

.full {
	grid-column: 1 / -1;
}

.form-actions {
	display: flex;
	gap: 10px;
}

.status {
	margin-top: 6px;
	min-height: 1.2em;
	color: var(--muted);
}

.footer {
	text-align: center;
	font-size: 14px;
}

.footer a {
	color: var(--primary-2);
	text-decoration: none;
	transition: background 0.5s ease, transform 0.3s ease;
}

.footer a:hover {
	background: linear-gradient(90deg, var(--primary-2), var(--accent));
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

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

.skill {
width: 100%;
padding: 15px;
}
}