	:root{
		--bg0: #1d2021;
		--bg1: #282828;
		--bg2: #32302f;
		--fg: #ebdbb2;
		--fg-dim: #a89984;
		--gray: #665c54;
		--green: #b8bb26;
		--yellow: #fabd2f;
		--blue: #83a598;
		--red: #fb4934;
		--purple: #d3869b;
		--aqua: #8ec07c;
		--orange: #fe8019;
	}
	*{box-sizing:border-box; margin:0; padding:0;}
	html,body{
		background:var(--bg0);
		color:var(--fg);
		font-family:'JetBrains Mono', monospace;
		min-height:100vh;
		font-size:15px;
	}
	::selection{ background:var(--yellow); color:var(--bg0); }
	.topbar{ display:flex; align-items:center; justify-content:space-between; background:var(--bg1); border-bottom:2px solid var(--bg2); padding:0 14px; height:34px; position:sticky; top:0; z-index:50; font-size:13px; }
	.ws-list{ display:flex; gap:2px; height:100%; }
	.ws-btn{ background:transparent; border:none; color:var(--fg-dim); font-family:inherit; font-size:13px; padding:0 12px; height:100%; cursor:pointer; display:flex; align-items:center; gap:6px; border-right:1px solid var(--bg2); white-space:nowrap; transition:color .18s ease, background-color .18s ease; }
	.ws-btn:hover{ color:var(--fg); background:var(--bg2); }
	.ws-btn.active{ color:var(--bg0); background:var(--green); font-weight:700; }
	.ws-num{ opacity:.7; }
	.topbar-right{ display:flex; align-items:center; gap:16px; color:var(--fg-dim); }
	.topbar-right span{ display:flex; align-items:center; gap:6px; }
	.status-dot{ width:7px; height:7px; background:var(--green); display:inline-block; box-shadow:0 0 0 2px rgba(184,187,38,.25); animation:status-pulse 2.4s ease-in-out infinite; }
	@keyframes status-pulse{ 50%{ box-shadow:0 0 0 4px rgba(184,187,38,.08); } }
	#clock{ color:var(--fg); }
	.desktop{ display:flex; flex-direction:column; align-items:center; padding:28px 16px 60px; min-height:calc(100vh - 34px); }
	.window{ width:100%; max-width:880px; background:var(--bg1); border:1px solid var(--bg2); animation:window-in .45s ease-out both; }
	@keyframes window-in{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:translateY(0); } }
	.titlebar{ background:var(--bg2); padding:7px 12px; font-size:12.5px; color:var(--fg-dim); border-bottom:1px solid #1a1a1a; display:flex; justify-content:space-between; }
	.titlebar .path{ color:var(--aqua); }
	.term-body{ padding:22px 26px 30px; line-height:1.65; }
	.prompt{ color:var(--green); font-weight:700; }
	.prompt .at{ color:var(--fg-dim); font-weight:400; }
	.prompt .host{ color:var(--blue); }
	.prompt .path{ color:var(--yellow); }
	.cmd-line{ margin-bottom:14px; color:var(--fg); }
	.contact-command{ margin-top:26px; }
	.cursor{ display:inline-block; width:8px; height:15px; background:var(--green); vertical-align:middle; margin-left:2px; animation:blink 1s step-end infinite; }
	@keyframes blink{ 50%{ opacity:0; } }
	section.pane{ display:none; }
	section.pane.active{ display:block; animation:pane-in .24s ease-out both; }
	@keyframes pane-in{ from{ opacity:0; transform:translateY(4px); } to{ opacity:1; transform:translateY(0); } }
	.neofetch{ display:flex; gap:34px; flex-wrap:wrap; }
	.ascii{ color:var(--yellow); font-size:11px; line-height:1.15; white-space:pre; flex-shrink:0; }
	.specs{ flex:1; min-width:260px; }
	.specs .who{ font-weight:800; font-size:17px; color:var(--fg); margin-bottom:2px; }
	.specs .rule{ color:var(--gray); margin-bottom:10px; }
	.spec-row{ margin-bottom:3px; }
	.spec-key{ color:var(--red); font-weight:700; display:inline-block; min-width:96px; }
	.spec-val{ color:var(--fg); }
	.swatches{ display:flex; gap:4px; margin-top:12px; }
	.swatch{ width:18px; height:14px; }
	.swatch-red{ background:var(--red); }
	.swatch-green{ background:var(--green); }
	.swatch-yellow{ background:var(--yellow); }
	.swatch-blue{ background:var(--blue); }
	.swatch-purple{ background:var(--purple); }
	.swatch-aqua{ background:var(--aqua); }
	.swatch-orange{ background:var(--orange); }
	.swatch-fg{ background:var(--fg); }
	.about-text{ margin-top:24px; padding-top:20px; border-top:1px solid var(--bg2); color:var(--fg-dim); max-width:70ch; }
	.about-text p{ margin-bottom:12px; }
	.about-text .hl{ color:var(--aqua); }
	.ls-header{ color:var(--gray); margin-bottom:8px; }
	table.lsl{ width:100%; border-collapse:collapse; }
	table.lsl td{ padding:2px 8px 2px 0; vertical-align:top; font-size:13.5px; }
	.perm,.lnum{ color:var(--gray); }
	.own,.fsize,.fdate{ color:var(--fg-dim); }
	.fsize{ text-align:right; }
	.fname{ color:var(--aqua); font-weight:700; }
	.fname.dir{ color:var(--blue); }
	.fname.exe{ color:var(--green); }
	.log-entry{ margin-bottom:22px; padding-left:14px; border-left:2px solid var(--bg2); transition:border-color .18s ease; }
	.log-entry:hover{ border-left-color:var(--yellow); }
	.log-time{ color:var(--gray); font-size:12.5px; margin-bottom:2px; }
	.log-title{ color:var(--fg); font-weight:700; font-size:15.5px; }
	.log-org{ color:var(--purple); margin-bottom:8px; }
	.log-entry ul{ list-style:none; padding-left:0; }
	.log-entry li{ color:var(--fg-dim); margin-bottom:4px; }
	.log-entry li::before{ content:"$ "; color:var(--green); }
	.tag-row{ margin-top:8px; display:flex; gap:6px; flex-wrap:wrap; }
	.tag{ border:1px solid var(--gray); color:var(--fg-dim); padding:1px 7px; font-size:11.5px; }
	.proj-entry{ margin-bottom:20px; }
	.proj-head{ display:flex; align-items:baseline; gap:8px; margin-bottom:6px; }
	.proj-name{ color:var(--orange); font-weight:700; font-size:15.5px; }
	.proj-since{ color:var(--gray); font-size:12px; }
	.proj-entry p{ color:var(--fg-dim); margin-bottom:8px; max-width:70ch; }
	.proj-link{ color:var(--blue); text-decoration:none; border-bottom:1px dotted var(--blue); }
	.proj-link:hover{ color:var(--aqua); border-color:var(--aqua); }
	.repo-box{ border:1px solid var(--bg2); padding:12px 14px; margin-top:16px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; }
	.repo-box .repo-name{ color:var(--fg); }
	.repo-box .repo-name i{ color:var(--fg-dim); margin-right:8px; }
	.edu-entry{ display:flex; gap:18px; margin-bottom:16px; align-items:baseline; }
	.edu-year{ color:var(--gray); width:90px; flex-shrink:0; font-size:12.5px; }
	.edu-body .edu-deg{ color:var(--fg); font-weight:700; }
	.edu-body .edu-inst{ color:var(--fg-dim); }
	.contact-grid{ display:flex; flex-direction:column; gap:2px; max-width:60ch; }
	.contact-row{ display:flex; gap:14px; padding:10px 4px; border-bottom:1px solid var(--bg2); align-items:center; text-decoration:none; color:var(--fg); transition:background-color .18s ease, padding-left .18s ease; }
	.contact-row:hover{ background:var(--bg2); padding-left:8px; }
	.contact-row i{ width:18px; color:var(--yellow); }
	.contact-row .c-label{ color:var(--fg-dim); width:80px; flex-shrink:0; font-size:12.5px; }
	.contact-row .c-val{ color:var(--fg); }
	.exit-note{ color:var(--gray); margin-top:22px; font-size:12.5px; }
	.statusbar{ position:fixed; bottom:0; left:0; right:0; background:var(--bg1); border-top:2px solid var(--bg2); padding:6px 14px; font-size:11.5px; color:var(--fg-dim); display:flex; justify-content:space-between; z-index:50; }
	.statusbar a{ color:var(--fg-dim); text-decoration:none; }
	.statusbar a:hover{ color:var(--yellow); }
	.statusbar .seg{ display:flex; gap:18px; }
	@media (max-width:640px){ .topbar{ overflow-x:auto; } .term-body{ padding:16px 16px 24px; } .neofetch{ flex-direction:column; } .edu-entry{ flex-direction:column; gap:2px; } .edu-year{ width:auto; } .statusbar{ flex-direction:column; gap:2px; text-align:center; } }
	@media (prefers-reduced-motion:reduce){ .cursor,.status-dot,.window,section.pane.active{ animation:none; } .ws-btn,.log-entry,.contact-row{ transition:none; } }
